getBackEndData(url) {
var opts = { method: 'POST' };
fetch(url, opts).then((res) => res.json()) //解析 JSON 数据,也可以解析成 TEXT:res.text()
.then((responseData) => {
this.setState({data: responseData}) // 处理请求得到的数据, 赋值到本地数据
}).catch((error) => {
e => console.log('错误:', e) //网络请求失败执行该回调函数,得到错误信息
})
}
componentWillMount() {
this.getBackEndData()
}
网友评论