所以我一直在我的ReactJS组件中放置以下代码,我基本上是在尝试将两个API调用都置于一个名为vehicles的状态中,但是我收到以下代码的错误:componentWillMount(){//Makearequestforvehicledataaxios.all([axios.get('/api/seat/models'),axios.get('/api/volkswagen/models')]).then(axios.spread(function(seat,volkswagen){this.setState({vehicles:seat.data+volkswagen.data}