關(guān)于微信小程序的富文本標(biāo)簽的開(kāi)發(fā)環(huán)境使用
wxml下添加標(biāo)簽
<rich-text nodes="{{msg}}"></rich-text>
js下加工數(shù)據(jù)
data: {
msg:''
},
onLoad: function (options) {
var that= this
wx.request({
url: '', //僅為示例,并非真實(shí)的接口地址
method:'post',
header: {
'content-type': 'application/json' // 默認(rèn)值
},
success(res) {
console.log(res.data)
that.setData({
msg: res.data.ymxq.replace(/\<p>/g, "<p style='line-height: 24px; font-size:15px;text-align: justify;margin:10px 0;'>")
})
}
})
},
注意這里是p標(biāo)簽所以替換樣式這樣寫(xiě)。
作者:Vam的金豆之路
主要領(lǐng)域:前端開(kāi)發(fā)
我的微信:maomin9761
微信公眾號(hào):前端歷劫之路