React 如何解析从后台读取的内容是html格式代码(带样式)

2021-04-11 03:28

阅读:724

标签:width   格式   return   round   name   rop   读取   asc   turn   

 React中是不解析直接从后台拿到的html格式的代码,因为是要防止XSS攻击。什么是XSS攻击,在下一个博客里面出现。所以要让react解析从后台拿到的html格式的代码就要用到以下代码,话不多说:

import React from ‘react‘
class IndexCom extends React.Component {
    constructor(props, context) {
        super(props, context);
        this.state={
            div:‘
11111111111111
‘, } } render() { return (
) } } export default IndexCom

  

React 如何解析从后台读取的内容是html格式代码(带样式)

标签:width   格式   return   round   name   rop   读取   asc   turn   

原文地址:https://www.cnblogs.com/ygunoil/p/12420219.html


评论


亲,登录后才可以留言!