目的:对小程序进行全局配置,
决定页面路径、窗口表现、网络超时时间、多tab等
hbuilder中的page.json与小程序中app.json中同理
{
“page”:[
]//1.页面路径
“window”:{} //2.全局的窗口表现形式
“ tabbar”:{
"list":[{}]
}//3.tabbar
“plugins”:{}//4.使用到的插件
"networkTimeout":{}//5.网络超时时间
“debug”:true,
navigateToMiniProgramAppIdList:[''] //6.跳转小程序appid列表
“subPackages”:[{}]//7.分包配置(构建成不同的子包配置项)
“preloadRule” //8分包规则
}
1.页面路径
“page”:[{
"name":''//
"path":'/pages/index/index'//路径
“style”:{
"navigatorBarTitleText":''//头部名字
"navigationStyle":'custom' //设置后可自定义头部
}
}]
网友评论