Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用符合我公司政策的函数(白名单 a、ul、ol 等)替换默认的转义函数(转义所有内容)。如何用自己的转义函数替换内置的转义函数?
我可以使用它,但在整个应用程序中使用它有点烦人,因为几乎所有数据都属于我们公司范围的政策:
<div dangerouslySetInnerHTML={{__html: myEscapeFunc(data)}} />
创建一个新的 React 组件并将其命名为“AllowedHtml”,您可以在其中放置所有功能并定期传递数据而无需 akward{{__html:前缀
{{__html:
<AllowedHtml html={data}/>