如何使用react js存储和显示html元素

时间:2019-04-25 04:35:05

标签: reactjs

如何通过脚本在Java脚本窗口中显示html元素。我已经尝试过使用json数据,但是元素是用html硬编码的。

建议我怎么做。

 class App extends Component {   
       constructor() {
      super();
      this.state = {
        data: '',
      }
    }
  componentDidMount() {
   fetch('http')
       .then((response) => response.json())
        .then((response) => {
            // fetch the text
      fetch(response.url)
              .then(response2 => response2.text())
              .then(response2 => {
                this.setState({
                  data: response2
                })
              })
          })
        }
 render() {
    return (
        <div>
         {this.state.data}
        </div> 
      )
    }
  }
  export default App;

0 个答案:

没有答案