在React中执行多个GET请求时处理第二响应

时间:2018-11-06 02:29:09

标签: javascript jquery html reactjs get

我已经设法将第一个响应传递到组件的状态名称数据(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
        });
      }
    );
}

1 个答案:

答案 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 });
});