Reactjs convert html string to jsx

前端 未结 9 1421
夕颜
夕颜 2020-11-22 10:09

I\'m having trouble dealing with facebook\'s ReactJS. Whenever I do ajax and want to display an html data, ReactJS displays it as text. (See figure below)

9条回答
  •  误落风尘
    2020-11-22 10:16

    By default, React escapes the HTML to prevent XSS (Cross-site scripting). If you really want to render HTML, you can use the dangerouslySetInnerHTML property:

    
    

    React forces this intentionally-cumbersome syntax so that you don't accidentally render text as HTML and introduce XSS bugs.

提交回复
热议问题