uniapp图片格式webp在IOS上不显示问题

文章描述:

uniapp解决图片格式为webp在IOS上无法正常显示问题

解决 .webp 格式图片在 ios 设备上无法正常显示的问题:

// 使用字符串的 replace() 方法,将 webp 的后缀名替换为 jpg 的后缀名
res.message.goods_introduce = res.message.goods_introduce.replace(/<img /g, '<img style="display:block;" ').replace(/webp/g, 'jpg')
this.goods_info = res.message

 

发布时间:2022/06/10

发表评论