app.json Expecting 'STRING','NUMBER','NULL','TRUE','FALSE','{','[',']', got INVALID的错误
错误如下
app.json代码如下:
{
"pages":[
// "pages/index/index",
// "pages/logs/logs",
"pages/board/board",
"pages/search/search",
"pages/about/about"
],
"window":{
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#354951",
"navigationBarTitleText": "西安宙斯网络科技有限公司",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#dddddd",
"selectedColor": "#3cc51f",
"borderStyle": "",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/board/board",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-actived.png",
"text": "首页"
},
{
"pagePath": "pages/search/search",
"iconPath": "images/search.png",
"selectedIconPath": "images/search-actived.png",
"text": "搜索"
},
{
"pagePath": "pages/about/about",
"iconPath": "images/profile.png",
"selectedIconPath": "images/profile-actived.png",
"text": "关于"
}
]
}
}
删除app.json中的注释
so bug完美解决