我正在编写一个组件,它将向站点的两个不同路径发出获取请求,然后将其状态设置为结果响应数据。我的代码看起来像这样:
export default class TestBeta extends React.Component {
constructor(props){
super(props);
this.state = {
recentInfo: [],
allTimeInfo: []
};
}
componentDidMount(){
Promise.all([
fetch('https://fcctop100.herokuapp.com/api/fccusers/top/recent'),
fetch('https://fcctop100.herokuapp.com/api/fccusers/top/alltime')
])
.then(([res1, res2]) => [res1.json(), res2.json()])
.then(([data1, data2]) => this.setState({
recentInfo: data1,
alltimeInfo: data2
}));
}
但是,当我去渲染我的两个状态时,我发现它们实际上仍然是空的,实际上并没有设置任何东西。我觉得我可能错误地使用了 Promises 或 fetch() API,或者误解了 setState 的工作原理,或者是多种情况的组合。我四处测试,发现在第一个 then() 之后,我的 data1 和 data2 出于某种原因仍然是 Promises,还没有成为实际的 JSON 对象。无论哪种方式,我都无法弄清楚这里发生了什么。任何帮助或解释将不胜感激