一、问题描述
在使用 uniapp 开发中遇到提示文件不存在,具体如下:
[ app.json 文件内容错误] app.json: ["tabBar"]["list"][0]["iconPath"]: "static/images/tabbar/ic_home.png" 未找到
pages.json 内容如下:
"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 过来,导致生成的微信小程序中图片没有加载过去,重启项目后问题解决