小程序<text>
换行能识别\n
,但不能识别<br>
js:
const app = getApp()
Page({
data: {
note:"购买须知: ↵1、啊啊啊啊啊啊啊。 ↵2、不不不不不不不不不。 ↵3、车车车车车错错错错错错错错错"
},
onLoad: function () {
let {note} = this.data
let str = note.replace(/↵/g,"\n");
console.log(str)
this.setData({
note:str
})
},
})
wxml:
<text>{{note}}</text>