美文网首页
编辑器添加xss 并保留style样式处理

编辑器添加xss 并保留style样式处理

作者: 多记录多学习 | 来源:发表于2023-06-27 18:01 被阅读0次
    import xss from 'xss';
    export default new xss.FilterXSS({
      whiteList: {
        // 允许的标签和属性
        style: ['*'],
      },
      onTag: (tag, html) => {
        // 判断需要筛除的标签
        const filterTag = ['script', 'iframe', 'alert'];
        if (filterTag.includes(tag)) {
          return ''; // 返回空字符串来移除标签
        }
        return html; // 保留其他标签
      },
    });
    

    相关文章

      网友评论

          本文标题:编辑器添加xss 并保留style样式处理

          本文链接:https://www.haomeiwen.com/subject/cvynydtx.html