微信小程序报错图片加载失败渲染层网络层错误Failed to load image
微信小程序报错图片加载失败渲染层网络层错误Failed to load image
·
这个错误找了很久,原来是这样的:
<u-image v-if="baseListItem.img.length>0" :src="baseListItem.img" width='36' height='36'>
</u-image>
baseList: [{
name: 'star',
img: 'static/images/consultation/searchDoctor.png',
title: '找医生',
text: '问诊咨询'
}]
使用这样的方式错误就会重现出来
解决方案:使用绝对路径,问题就可以解决了
baseList: [{
name: 'star',
img: '/static/images/consultation/searchDoctor.png',
title: '找医生',
text: '问诊咨询'
}]
更多推荐
已为社区贡献1条内容
所有评论(0)