最佳答案
我希望能够传递带有 HTML 标记的文本,如下所示:
<MyComponent text="This is <strong>not</strong> working." />
但是在 MyComponent
的渲染方法中,当我打印出 this.props.text
时,它实际上打印出了所有东西:
This is <strong>not</strong> working.
有没有什么方法可以使 React 解析 HTML 并正确地将其转储出来?