[ app.json 文件内容错误] app.json: tabBar.borderStyle 字段需为 black,white
时间: 2023-05-30 18:02:43 浏览: 1236
这个错误提示是指在 app.json 文件中的 tabBar.borderStyle 字段的取值必须是 black 或 white,如果不是,则会报错。
下面是一个正确的 app.json 文件中 tabBar.borderStyle 字段的示例:
```
{
"pages": [
"pages/index/index",
"pages/logs/logs"
],
"window": {
"navigationBarTitleText": "Demo"
},
"tabBar": {
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/home.png",
"selectedIconPath": "images/home_selected.png"
},
{
"pagePath": "pages/logs/logs",
"text": "日志",
"iconPath": "images/logs.png",
"selectedIconPath": "images/logs_selected.png"
}
],
"borderStyle": "black"
}
}
```
在这个示例中,tabBar.borderStyle 字段的取值为 black,符合规范。如果您的 app.json 文件中的 tabBar.borderStyle 字段取值不正确,可以根据错误提示修改即可。
阅读全文