react 运用 fetch 请求数据
程序员文章站
2022-04-15 18:38:03
...
componentDidMount(){
fetch('服务器接口').then(res=>{
if(res.ok){
res.json().then(data=>{
this.setState({
data //ES6语法
})
})
}
})
}
上一篇: Fetch使用
下一篇: 客户端发送请求的方式以及服务端接收请求