这是一个示例字符串,我想对特殊字符进行解码:
"<div class="c1-snippet">
Let’s see if you can run Troubleshooter. Select the <strong>Start</strong> button,
select <strong>Settings</strong> > <strong>Update &amp; security</strong>
</div>"
我尝试使用“ react-render-html”中的renderHTML,使用它一次或两次,它只渲染未转义的部分。
Troubleshooter.
Select the <strong>Start</strong> button,
select <strong>Settings</strong> >
<strong>Update & security</strong> > <strong>Activation</strong>
答案 0 :(得分:1)
安装以下软件包: https://www.npmjs.com/package/html-escape-unescape
在模块中导入。
像这样使用:
{{ someStringToBeEscaped | escape }}
{{ someStringToBeUnescaped | unescape }}