一、为什么要分包 因小程序有体积和资源加载限制,优化小程序的下载和启动速度。 二、主包和分包 所谓的主包,即放置默认启动页面/TabBar 页面,以及一些所有分包都需用到公共资源/js 脚本;而分包则是根据pages.JSON的配置进行划分
所谓的主包,即放置默认启动页面/TabBar 页面,以及一些所有分包都需用到公共资源/js 脚本;而分包则是根据pages.JSON的配置进行划分。
在小程序启动时,默认会下载主包并启动主包内页面,当用户进入分包内某个页面时,会把对应分包自动下载下来,下载完成后再进行展示。此时终端界面会有等待提示。
App默认为整包。从uni-app 2.7.12+ 开始,也兼容了小程序的分包配置。其目的不用于下载提速,而用于首页是Vue时的启动提速。App下开启分包,除在pages.json中配置分包规则外,还需要在manifest中设置在app端开启分包设置,详见:uni-app官网
目前小程序分包大小有以下限制:
首先我们来看一下正常的配置和目录,当前添加了tabBar表现,这里我们只添加了四个
当前还没有配置分包的pages.json文件
{"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages{"path": "pages/index/index",//配置页面路径"style": {"navigationBarTitleText": "首页",//导航栏标题文字内容"enablePullDownRefresh": false//是否开启下拉刷新: 默认为false}}, {"path": "pages/car/car","style": {"navigationBarTitleText": "订单","enablePullDownRefresh": false}}, {"path": "pages/mine/mine","style": {"navigationBarTitleText": "我的","enablePullDownRefresh": false}}, {"path": "pages/order/order","style": {"navigationBarTitleText": "购物车","enablePullDownRefresh": false}}],"tabBar":{//设置底部 tab 的表现"color": "#909399",//tab 上的文字默认颜色"selectedColor": "#303133",//tab 上的文字选中时的颜色"backgroundColor": "#e5e5e5",//tab 的背景色"borderStyle":"white",//tabbar 上边框的颜色,可选值 black/white,也支持其他颜色值"list": [//tab 的列表,详见 list 属性说明,最少2个、最多5个 tab{"pagePath": "pages/index/index",//页面路径,必须在 pages 中先定义"iconPath": "static/tabBar/home.png",//图片路径"selectedIconPath": "static/tabBar/home-active.png",//选中时的图片路径"text": "首页"//tab 上按钮文字,在 App 和 H5 平台为非必填。例如中间可放一个没有文字的+号图标},{"pagePath": "pages/car/car","iconPath": "static/tabBar/circle.png","selectedIconPath": "static/tabBar/circle-active.png","text": "订单"},{"pagePath": "pages/order/order","iconPath": "static/tabBar/order.png","selectedIconPath": "static/tabBar/order-active.png","text": "购物车"},{"pagePath": "pages/mine/mine","iconPath": "static/tabBar/mine.png","selectedIconPath": "static/tabBar/mine-active.png","text": "我的"}]},"globalStyle": {"navigationBarTextStyle": "black","navigationBarTitleText": "小小商城","navigationBarBackgroundColor": "#F8F8F8","backgroundColor": "#F8F8F8"},"uniIdRouter": {}}
{ //分包加载配置,此配置为小程序的分包加载机制。"subPackages": [{"root": "pages/subPack", //子包的根目录"pages": [{ //这里的配置路径和pages里的一样"path": "list", //配置页面路径,这里要注意,因为root已经选中了文件夹,所以我们只要填写文件名就好"style": {"navigationBarTitleText": "","enablePullDownRefresh": false}},{"path": "tab","style": {"navigationBarTitleText": "","enablePullDownRefresh": false}}]}]}
{// 分包预载配置"preloadRule": {// 当我们进入了pages/index/index页面以后就会预下载pages/subPack分包"pages/index/index": {"network": "all",//在指定网络下预下载,可选值为:all(不限网络)、wifi(仅wifi下预下载)"packages": ["pages/subPack"]//进入页面后预下载分包}}}
这样我们分包就配置好了
来源地址:https://blog.csdn.net/weixin_50587417/article/details/126933562
--结束END--
本文标题: uniapp分包,小程序分包处理,详解(图解),手把手从0开始
本文链接: https://lsjlt.com/news/391321.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0