欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

react 运用 fetch 请求数据

程序员文章站 2022-04-15 18:38:03
...
componentDidMount(){
   fetch('服务器接口').then(res=>{
      if(res.ok){
         res.json().then(data=>{
             this.setState({
                 data     //ES6语法
             })
         })   
      }

   })
}

 

相关标签: fetch