React 如何解析从后台读取的内容是html格式代码(带样式)
React中是不解析直接从后台拿到的html格式的代码,因为是要防止XSS攻击。什么是XSS攻击,在下一个博客里面出现。所以要让react解析从后台拿到的html格式的代码就要用到以下代码,话不多说: import React from ‘react‘ class IndexCom extends React.Component { constructor(props, context) { super(props, context); this.state={ div:‘<div style="width: 750px;height: 200px;background: red;color: #fff;"><b>11111111111111</b></div>‘, } } render() { return ( <div> <div className="index"> <div dangerouslySetInnerHTML = {{ __html:this.state.div }}></div> </div> </div> ) } } export default IndexCom
相关推荐
游走的豚鼠君 2020-11-10
81417707 2020-10-30
ctg 2020-10-14
小飞侠V 2020-09-25
PncLogon 2020-09-24
jipengx 2020-09-10
颤抖吧腿子 2020-09-04
wwzaqw 2020-09-04
maple00 2020-09-02
青蓝 2020-08-26
罗忠浩 2020-08-16
liduote 2020-08-13
不知道该写啥QAQ 2020-08-02
pengruiyu 2020-08-01
wmd看海 2020-07-27
孝平 2020-07-18
Eduenth 2020-07-05
iftrueIloveit 2020-07-04