简体   繁体   中英

dangerouslysetinnerhtml nextJS tag <p>

I have a problem executing dangerouslySetInnerHTML in nextJS. I want to remove the <p> tag, but when it is reloaded it doesn't even appear on the screen. this is my code

在此处输入图像描述

You can only set one of children or props.dangerouslySetInnerHTML . The return() function should be:

return (
    <div className={styles.article} dangerouslySetInnerHTML={{ __html: data }} />
);

I do recommend using DOMPurify to sanitize your HTML before inserting it in the DOM via dangerouslySetInnerHTML .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM