我在使用 React.js 时有一个问题
我从后端得到了一些字符串,我需要在我的 react jsx DOM 中输入它们
后端给了我这些字符串
from Backend =>
let testString = '<TestTag />'
我只想执行 DangerouslyInnerHTML
from Frontend =>
const TestTag = styled.div`
width: 100px;
height: 100px;
background-color: yellow;
`
function Example() {
const html = `
testString
`
return (
<InnerHTML html={html} />
)
}
预期显示黄色框,但打印空元素
我应该怎么做才能解决这个问题?