uni-app 微信小程序解决富文本内容图片自适应问题

 使用方法

Js代码:

export default {
data() {
	return {
			
    }
},
onLoad(e){},
onShareAppMessage(res) {},
methods: {},
filters:{
/**
 * 处理富文本里的图片宽度自适应
 * 1.查找img标签有无style属性,如果没有,加上style
 * 2.所有标签style后追加 max-width:100% !important;
 * 4.去掉
标签 * @param html * @returns {void|string|*} */ formatRichText(html) { //控制小程序中图片大小 let newContent = html.replace(/]*>/gi, function(match, capture) { console.log(match.search(/style=/gi)); if(match.search(/style=/gi) == -1){ match = match.replace(/\]*\/>/gi, ''); return newContent; } }

 

你可能感兴趣的:(笔记)