概述
在这里插入代码片
```// 请求
requestData = (jgbh, ksnd, jsnd, page) => {
console.log('请求数据', jgbh, jsnd, jsnd, page)
fetch(firstGradeQuery, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
jgbh, ksnd, jsnd, page, size: 10
})
}).then(res => {
if (res.ok) {
return res.json()
}
throw new Error(res.status)
}, rej => console.log(rej))
.then(data => {
console.log('返回数据', data)
const ary = data.results || []
this.setState({
total: data.totalcount,
dataSource: ary.map((item, index) => {
return { ...item, index }
}),
currentPage: page
})
})
.catch(err => errorTip(err.message))
}
//注释:firstGradeQuery是查询接口。
最后
以上就是满意玉米为你收集整理的React请求数据的全部内容,希望文章能够帮你解决React请求数据所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复