⼩程序开发-配置参数
⼩程序的开发⾥⾯有⼀些项⽬配置需要注意,这些配置说明⽂档我们可以在公众平台到
下⾯是我⾃⼰建的demo
我们在app.json⾥⾯配置⼀些全局配置
我们可以看到 ⽂件⾥⾯的pages,这⾥⾯是配置项⽬页⾯地址的地⽅  在这⾥我创建了四个页⾯  分别对应左边⽬录pages下⾯的四个⽂件夹,在这⾥配置页⾯的时候我们要注意放在最上⾯的页⾯是⼩程序进⼊后第⼀个加载的页⾯
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/find/find",
"pages/self/self"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#7ff102",
"navigationBarTitleText": "⾸页", "navigationBarTextStyle": "black", "enablePullDownRefresh": true,
"backgroundColor": "pink"
},
"tabBar": {
"color": "#000000",
"selectedColor": "#1AAD16",
"list": [
{
"text": "⾸页",
"pagePath": "pages/index/index",
"iconPath":"images/tabBar/tabBar1.png", "selectedIconPath":"images/tabBar/tabBar1-selected.png" },
{
"text": "发现",
"pagePath": "pages/find/find",
"iconPath": "images/tabBar/tabBar2.png", "selectedIconPath": "images/tabBar/tabBar2-selected.png" },
{
"text": "⽇志",
"pagePath": "pages/logs/logs",
"iconPath": "images/tabBar/tabBar3.png", "selectedIconPath": "images/tabBar/tabBar3-selected.png" },
{
"text": "我的",
"pagePath": "pages/self/self",
"iconPath": "images/tabBar/tabBar4.png", "selectedIconPath": "images/tabBar/tabBar4-selected.png" }
]
},
"debug": true,
"sitemapLocation": "sitemap88.json" }
window配置:
"enablePullDownRefresh": true 这个是开启下拉刷新  true为开启
selectediconpath什么意思"backgroundTextStyle": "light"  这个设置下拉刷新的时候 加载样式的    只有light和dark两种样式"navigationBarTitleText": "⾸页"  设置顶部⽂本
"navigationBarTextStyle": "black" 设置顶部⽂本样式
"backgroundColor": "pink" 背景颜⾊
"debug": true  这个是⽤来开启调试模式的  true开启  这个在我看来没啥⼤的作⽤  你不开  出现错误  控制台也会提醒如下:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。