引言:在微信小程序裏,好比商品展現頁面的商品詳情會有圖片展現,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 } 複製代碼