React: Raw HTML tag in content

前端 未结 2 1915
北海茫月
北海茫月 2021-01-22 14:19

I am working on a React app. There is some dynamic content which contents HTML tags. When I am showing that content on the page, it\'s showing with raw HTML tag.

For say

2条回答
  •  灰色年华
    2021-01-22 15:18

    You can use the 'dangerouslySetInnerHTML' like:

    const msg = () => ({__html: 'Some text here'});
    

    and use it in your code like:

    For reference for 'dangerouslySetInnerHTML' read this:

    dangerouslySetInnerHTML

提交回复
热议问题