我在从 forEach 循环内的嵌套 axios 调用更新我的状态时遇到问题:
constructor(props) {
super(props);
this.state = {
isLoaded: false,
items: []
};
//Binding fetch function to component's this
this.fetchFiles = this.fetchFiles.bind(this);
}
componentDidMount() {
this.fetchFiles();
}
fetchFiles() {
axios.get('/list')
.then((response) => {
var items = response.data.entries;
items.forEach((item, index) => {
axios.get('/download'+ item.path_lower)
.then((response) => {
item.link = response.data;
})
.catch(error => {
console.log(error);
})
});
this.setState(prevState => ({
isLoaded: true,
items: items
}));
console.log(this.state.items);
})
.catch((error) => {
console.log(error);
})
}
这个想法是使用它的 API(JavaScript SDK)从 Dropbox 获取所有项目,然后对于每个项目,我还需要调用不同的 API 端点来获取临时下载链接并将其分配为新属性。只有在所有项目都附加了它们的链接之后,我才想要 setState 并呈现组件。有人可以帮忙解决这个问题吗,我已经花了好几个小时与Promise斗争:S