嘘~ 正在从服务器偷取页面 . . .

uni-app使用总结


rich-text 富文本 图片自适应问题 解决

问题: rich-text是微信小程序的富文本标签,在使用rich-text的时候,需要rich-text内部图片宽高自适应。

解决方法: 首先新建一个 text.js 文件

/**
 * 处理富文本里的图片宽度自适应
 * 1.去掉img标签里的style、width、height属性
 * 2.img标签添加style属性:max-width:100%;height:auto
 * 3.修改所有style里的width属性为max-width:100%
 * 4.去掉<br/>标签
 * @param html
 * @returns {void|string|*}
 */
function formatRichText(html){
  let newContent= html.replace(/<img[^>]*>/gi,function(match,capture){
    match = match.replace(/style="[^"]+"/gi, '').replace(/style='[^']+'/gi, '');
    match = match.replace(/width="[^"]+"/gi, '').replace(/width='[^']+'/gi, '');
    match = match.replace(/height="[^"]+"/gi, '').replace(/height='[^']+'/gi, '');
    return match;
  });
  newContent = newContent.replace(/style="[^"]+"/gi,function(match,capture){
    match = match.replace(/width:[^;]+;/gi, 'max-width:100%;').replace(/width:[^;]+;/gi, 'max-width:100%;');
    return match;
  });
  newContent = newContent.replace(/<br[^>]*\/>/gi, '');
  newContent = newContent.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;"');
  return newContent;
}
 
module.exports = {
  formatRichText
}

接下来,那个页面需要进行富文本展示,就把这个js 文件引入

import {
		formatRichText
	} from 'xxxxx/text.js'  //看自己的路径


//这个是获取富文本的接口
teacher().then(res => {
	this.strings = formatRichText(res.data.teacherDetails)
})


//这是需要在页面上展示的内容
<rich-text :nodes="strings" style="width: 100%;"></rich-text>

完美解决 uni-app 的 rich-text组件 中图片宽高自适应问题

加油加油加油!!!


文章作者: 哲哲
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 哲哲 !
  目录