热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

如何取得反应?

如何解决《如何取得反应?》经验,为你挑选了1个好方法。



1> Dhaval Jardo..:

使用componentDidMount代替componentWillMount,不推荐使用。

这对Christopher处理异步操作的回答来说确实是一个很好的补充。

class App extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      data: []
    };
  }
  componentDidMount() {
    fetch("https://jsonplaceholder.typicode.com/todos")
      .then(respOnse=> response.json())
      .then(result =>
        this.setState({
          data: result
        })
      )
      .catch(e => console.log(e));
  }
  render() {
    const { data } = this.state;

    return 

{data[0] ? data[0].title : 'Loading'}

; } } ReactDOM.render(, document.getElementById("root"));



推荐阅读
author-avatar
蜕变爱宝女
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有