uni-app中富文本图片样式处理
uni-app中富文本图片样式处理<view v-html="richText"></view>1、新建js文件,处理富文本// 富文本处理function formatRichText(html){let newContent= html.replace(/\<img/gi, '<img style="max-width:100%;height:auto;di
·
uni-app中富文本图片样式处理
<view v-html="richText"></view>
1、新建js文件,处理富文本
// 富文本处理
function formatRichText(html){
let newContent= html.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block;"');
return newContent;
}
module.exports = {
formatRichText
}
2、在项目中引入js文件
import RichText from '@/components/richtext/richtext.js'
3、在项目的js调用
//res.data为请求返回的富文本
this.richText = RichText.formatRichText(res.data.content)
更多推荐
已为社区贡献1条内容
所有评论(0)