首页 > 其他 > 详细

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

时间:2021-05-04 13:53:45      阅读:27      评论:0      收藏:0      [点我收藏+]

 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
}

需要引入的界面

//引入文件
import {
        formatRichText
    } from ‘../../utils/text.js‘

//获取数据接口
async getActicle(){
                const mydata=await this.$myRequest({
                    url:"/api.php/grow/chengzhang_info",
                    method: ‘POST‘,
                    data:{
                        id:25
                    }
                })

 //formatRichText 调用方法        
this.showaticle=formatRichText(mydata.data.data.this_info.content);
},
//页面中显示
<rich-text :nodes="showaticle"></rich-text>

 

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

原文:https://www.cnblogs.com/ddqyc/p/14729039.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!