uni-app处理带有转义字符的数据显示在页面上
uni-app处理带有转义字符的数据
·
uni-app处理带有转义字符的数据显示在页面上
意思是有时候会有一些带有转义字符的数据需要显示在页面上
一般都是用v-html来将这段数据转化为标签
但是有时v-html也不生效,下面就是另外一种代替方法
//html标签反转义
HTMLEncode(text) {
let temp = document.createElement("div");
temp.innerHTML = text;
let output = temp.innerText || temp.textContent;
temp = null;
return output;
}
//然后调用
let new_title = this.HTMLEncode(old_title);
更多推荐
已为社区贡献1条内容
所有评论(0)