出现情况:在小程序运行一切正常,但是运行到h5上以后,提示非法标签,图片不显示
原始代码,src是一张文件类型的图片,但不是.png或.jpg后缀结尾
<image :src="http://iing" />
解决:
1、在uniapp项目根路径下面的index.html文件内添加mate标签,在vue代码里把上面image标签变成img标签即可
<meta name="referrer" content="no-referrer"/>
代码:
<!-- #ifdef MP-WEIXIN -->
<image :src="item.thumb" />
<!-- #endif -->
<!-- #ifdef H5 -->
<img :src="item.thumb" />
<!-- #endif -->