我已经设法将第一个响应传递到组件的状态名称数据(this.state.data)中。但是,当我尝试从另一个API再次请求data1时,它没有显示出来。检入开发工具后,两个响应都很好,并且第一个我可以使用数据。
class WeatherApp extends React.Component {
constructor(props) {
super(props);
this.state = {
error: null,
isLoaded: false,
data: [],
data1: []
};
}
componentDidMount() {
Promise.all([
fetch("weatherAPI.php"),
fetch("weatherAPIToday.php")
]).then(([res, res1]) => res.json())
.then((result, result1) => {
this.setState({
isLoaded: true,
data: result,
data1: result1
}, console.log(result));
},
(error) => {
this.setState({
isLoaded: true,
error
});
}
);
}
答案 0 :(得分:0)
因为res和res1都返回一个Promise,所以您要做的就是将它们都包装在Promise#all中
Promise.all([
fetch("weatherAPI.php"),
fetch("weatherAPIToday.php")
]).then(([res, res1]) => Promise.all(res.json(), res1.json()))
.then((result, result1) => {
this.setState({
isLoaded: true,
data: result,
data1: result1
}, console.log(result));
})
.catch(error => {
this.setState({ isLoaded: true, error });
});