我想知道是否有办法添加svg并以html代码显示其所有内容。
例如:
export class Plan extends PureComponent<Props> {
render() {
return(
<div style={{
height: "100%",
width: "100%"
}}>
<img style={{
height: "100%",
width: "100%"
}}
src={imgStadium}
/>
</div>
)
}
}
将导致此
<img style="height: 100%; width: 100%;" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4.....">
而我希望能够看到其中的所有元素,例如类,标签等。
有办法做到吗?
感谢您的关注