一、问题描述
在使用 uniapp 开发中遇到提示文件不存在,具体如下:
[ app.json 文件内容错误] app.json: ["tabBar"]["list"][0]["iconPath"]: "static/images/tabbar/ic_home.png" 未找到
pages.json 内容如下:文章来源:https://www.toymoban.com/news/detail-606495.html
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "static/images/tabbar/ic_home.png",
"selectedIconPath": "static/images/tabbar/ic_home_active.png"
}
]
}
二、问题解决
由于 tabbar 的图片是从其它项目中 copy 过来,导致生成的微信小程序中图片没有加载过去,重启项目后问题解决文章来源地址https://www.toymoban.com/news/detail-606495.html
到了这里,关于微信小程序中提示错误 tabBar.list[0].iconPath 文件不存在的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!