0
我想渲染一個有註釋的html組件,以便評論在DOM中顯示爲註釋。在反應組件的html中渲染評論
我現在有
<head>
<title>{props.pageTitle}</title>
</head>
但我想有
<head>
<title>{props.pageTitle}</title>
<!-- Some information here -->
</head>
而且我想避免使用下列內容:
dangerouslySetHtml
element.innerHTML = "...";
element.outerHTML = "...";
的可能的複製[如何呈現反應的HTML註釋?](https://stackoverflow.com/questions/40015336/how-to-render-a-html-comment-in-react) – Li357
另請參閱https://stackoverflow.com/q/40381851/5647260 – Li357
所有這些解決方案都使用內部,外部或危險 – es3735746