1. 程式人生 > >react fetch 請求資料

react fetch 請求資料

    getData(){  //請求資料函式
        fetch('https://www.easy-mock.com/mock/59801fd8a1d30433d84f198c/example/user/all')   ///此url地址內有json資料  可模擬使用
            .then(res => res.json())  ///解析json資料
            .then(data => {
              console.log(data)
              this.setState({posts: data})  ////賦值到本地資料
            })
            .catch(e => console.log('錯誤:', e))   ///請求出錯
    }
    componentWillMount() {
        this.getData()
        
      }