引言:在微信小程序里,好比商品展现页面的商品详情会有图片展现,PC端设置的商品详情是PC端的宽度,因此在小程序里图片会显示不全,这时就应该作相应的处理,使小程序里图片显示正确html
把图片的宽度改成手机屏幕对应的宽度node
须要知道微信小程序里有本身的宽度标准,单位为rpx;json
针对全部不一样尺寸的浏览器,微信小程序里规定屏幕宽为750rpx;小程序
WXML微信小程序
<view class='html_detail'>
<rich-text nodes='{{artical}}'></rich-text>
</view>
复制代码
WXSapi
data={artical:''}
async onLoad(){
const json = await api.getDetail();
if(json !== null){
this.artical = util.formatRichText(json.detail.description);
}
}
复制代码
util.js浏览器
function formatRichText(html){
let newContent= html.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block;"');
return newContent;
}
module.exports = {
formatRichText
}
复制代码
util.jsbash
/**
* 处理富文本里的图片宽度自适应
* 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 } 复制代码