标签:二次 auto lock 文本 技术 upload htm nbsp view
把后端给的富文本放到v-html中
有可能会出现解析不了的情况,写一个方法,在套一下,就可以了
showHtml(str) { //富文本解析
return str
.replace(str ? /&(?!#?\w+;)/g : /&/g, ‘&‘)
.replace(/ /g, "")
.replace(/</g, "<")
.replace(/>/g, ">")
.replace(/"/g, "\"")
.replace(/'/g, "\‘")
},
标签:二次 auto lock 文本 技术 upload htm nbsp view
原文地址:https://www.cnblogs.com/qdjj/p/12967823.html