标签:height pre span replace com 显示 inf 样式 图片
最近在用mpvue将之前写的vue项目转化为小程序,但是不支持v-html,也不能说不支持,只不过转化为了rich-text的富文本组件,但是图片显示不全啊
本来想让后端内嵌个样式的,还是算了,前面用正则进行内嵌吧。
其实就是一句话的事,页面也不用做改变。
<div class="imgs" v-html="detail.gift_info.img_detail"></div>
我直接放在了created中,反正测试嘛。
created() { this.detail.gift_info.img_detail = this.detail.gift_info.img_detail.replace(/\<img/gi, ‘<img style="max-width:100%;height:auto" ‘); }
没替换的
替换后的
标签:height pre span replace com 显示 inf 样式 图片
原文地址:https://www.cnblogs.com/wangyang0210/p/10448578.html