没有合适的资源?快使用搜索试试~ 我知道了~
首页微信小程序项目技术点整理
停工不停学 逆战中求生存 小程序的配置分为:全局配置、页面配置和sitemap配置 常用的全局配置选项app.json文件: { //在json文件中其实是不能有注释的,这里我简单做一些解释 pages: [ //pages为页面路径列表 pages/home/home, pages/kind/kind, pages/cart/cart, pages/user/user, pages/detail/detail, pages/map/map ], window: { //window为全局的默认窗
资源详情
资源评论
资源推荐

微信小程序项目技术点整理微信小程序项目技术点整理
停工不停学停工不停学 逆战中求生存逆战中求生存
小程序的配置分为:全局配置、页面配置和小程序的配置分为:全局配置、页面配置和sitemap配置配置
常用的全局配置选项常用的全局配置选项app.json文件:文件:
{
//在json文件中其实是不能有注释的,这里我简单做一些解释
"pages": [ //pages为页面路径列表
"pages/home/home",
"pages/kind/kind",
"pages/cart/cart",
"pages/user/user",
"pages/detail/detail",
"pages/map/map"
],
"window": { //window为全局的默认窗口表现
"navigationBarBackgroundColor": "#f66",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "橘子商城",
"backgroundColor": "#efefef",
"backgroundTextStyle": "dark",
"backgroundColorTop": "#0f0",
"onReachBottomDistance": 50
},
"tabBar": { //tabBar为底部tab导航栏表现
"color": "#333",
"selectedColor": "#f66",
"backgroundColor": "#efefef",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "/resources/home.png",
"selectedIconPath": "/resources/home_active.png"
},
{
"pagePath": "pages/kind/kind",
"text": "分类",
"iconPath": "/resources/kind.png",
"selectedIconPath": "/resources/kind_active.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "/resources/cart.png",
"selectedIconPath": "/resources/cart_active.png"
},
{
"pagePath": "pages/user/user",
"text": "我的",
"iconPath": "/resources/user.png",
"selectedIconPath": "/resources/user_active.png"
}
] },
"networkTimeout": { //网络请求超时
"request": 6000,
"connectSocket": 5000,
"uploadFile": 4000,
"downloadFile": 5000
},
"permission": { //小程序接口权限相关设置
"scope.userLocation": {
"desc": "小程序位置信息展示"
}
},
"navigateToMiniProgramAppIdList": [ //需要跳转的小程序列表
"wx5dfe0dd623d5ae6b"
],
"sitemapLocation": "sitemap.json" //指明 sitemap.json 的位置
}
常用的页面配置选项:常用的页面配置选项:
{
"navigationBarBackgroundColor": "#ff4001",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "橘子商城-首页",
"backgroundColor": "#efefef",
"backgroundTextStyle": "light",



















安全验证
文档复制为VIP权益,开通VIP直接复制

评论0