{
"pages":[
"pages/count/count",
"pages/list/list",
"pages/index/index",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"dark",
"backgroundColor": "#87ceeb",
"navigationBarBackgroundColor": "#87ceeb",
"navigationBarTitleText": "KZK",
"navigationBarTextStyle":"white",
"enablePullDownRefresh": true
},
"tabBar": {
"list": [{
"pagePath":" pages/count/count",
"text": "A"}
,
{"pagePath": "pages/list/list",
"text": "B"
},
{"pagePath": "pages/index/index",
"text": "C"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}
錯誤内容:[ app.json 文件内容错误] app.json: ["tabBar"]["list"][0]["pagePath"] 不应该以 ' ' 开头(env: Windows,mp,1.05.2204180; lib: 2.19.4),并且無法加載頁面。
"pagePath":" pages/count/count",
多了一个空格,把这个空格删掉试试"pagePath":"pages/count/count",
。