1. 程式人生 > >微信小程式rich-text富文字 圖片自適應寬度

微信小程式rich-text富文字 圖片自適應寬度

第一種方法:接口裡給img標籤加樣式(PHP)

$info['contents'] = str_replace("<img ", "<img style='max-width:100%;height:auto;'", $info['contents']);

第二種方法:小程式裡給img標籤加樣式

that.setData({
    //富文字內容
    contents: res.data.contents.replace(/\<img/gi, '<img style="max-width:100%;height:auto"')
})