当前位置:网站首页>微信小程序图片无法显示时显示默认图片
微信小程序图片无法显示时显示默认图片
2022-07-26 09:25:00 【44w0】
最近开发的项目是微信小程序,动态显示图片,遇到了一些问题
- 图片是从别的网站获取的网络图片,使用image标签无法正常显示
解决方案: 使用原生img标签,添加属性referrerPolicy=“no-referrer”
<img referrerPolicy="no-referrer" :src="item.picPath" >
此时图片可以显示出来了
2.之后发现有几个图片一直加载失败,就让其显示自己设置的默认图片(微信小程序不管用)
解决方案:处理图片加载失败的问题,使用onerror事件捕捉图片加载错误,使用默认图片
<img referrerPolicy="no-referrer" :src="item.picPath" onerror="οnerrοr=null;src='../../static/exam/b1.png'" ></img>
注意: οnerrοr=null一定不能省略,否则不能实现效果
3.用h5测试onerror事件捕捉图片加载错误是正常的,但是如果使用微信小程序就会报错,我又去百度了一番
解决方案:微信小程序中img标签不支持onerror事件,使用@error方法
<img referrerPolicy="no-referrer" :src="item.picPath" @error="imageError($event, index)" ></img>
js部分:
imageError(e, index) {
this.newFinal[index].picPath = '../../static/exam/b1.png';
},
注意:在imageError方法中将无法显示的图片替换成本地静态图片时,注意应该直接对遍历的对象修改,如果传值item修改item,是无法显示默认图片的
边栏推荐
- Li Mu D2L (VI) -- model selection
- C# Serialport的发送和接收
- 搜索模块用例编写
- Li Mu D2L (IV) -- softmax regression
- Object type collections are de duplicated according to the value of an attribute
- [online problem] timeout waiting for connection from pool problem troubleshooting
- 语音聊天app源码——钠斯直播系统源码
- 性格测试系统v1.0
- STM32+MFRC522完成IC卡号读取、密码修改、数据读写
- el-table的formatter属性的用法
猜你喜欢

Zipkin installation and use

Ext4 file system opens dir_ After nlink feature, link_ Use link after count exceeds 65000_ Count=1 means the quantity is unknown

CF1481C Fence Painting

Paper notes: knowledge map kgat (unfinished temporary storage)

服务器内存故障预测居然可以这样做!

异常处理机制二

Bloom filter

附加到进程之后,断点显示“当前不会命中断点 还没有为该文档加载任何符号”

【Mysql】一条SQL语句是怎么执行的(二)

【Flutter -- 布局】Align、Center、Padding 使用详解
随机推荐
NTT (fast number theory transformation) polynomial inverse 1500 word analysis
Elastic APM installation and use
asp.net 使用redis缓存
Basic use of ArcGIS 1
[arkit, realitykit] turn pictures into 3D models
【Mysql】认识Mysql重要架构(一)
点击input时,不显示边框!
volatile 靠的是MESI协议解决可见性问题?(上)
arcgis的基本使用4
QT | about how to use EventFilter
Object type collections are de duplicated according to the value of an attribute
大二上第三周学习笔记
ZXing简化版,转载
Local cache
2B and 2C
2B和2C
Arc GIS basic operation 3
大二上第五周学习笔记
docker配置mysql集群
LeetCode三数之和问题