赞
踩
filters: { //这个就不用说了吧,会vue2的都明白
filtersText(val) {
if (val != null && val != '') {
let reg = new RegExp("<.+?>", "g"); //匹配html标签
let arrEntities = { 'lt': '<', 'gt': '>', 'nbsp': ' ', 'amp': '&', 'quot': '"', 'ldquo': '“', 'mdash': '—', "rdquo": '”' };
return val.replace(reg, '').replace(/&(lt|gt|nbsp|amp|quot|ldquo|mdash|rdquo);/ig, function (all, t) {
return arrEntities[t];
});
}
}
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。