所以我一直在我的React JS组件中放置以下代码,我基本上试图将两个API调用放入一个名为vehicles
的状态,但是我收到了以下代码的错误:
componentWillMount() {
// Make a request for vehicle data
axios.all([
axios.get('/api/seat/models'),
axios.get('/api/volkswagen/models')
])
.then(axios.spread(function (seat, volkswagen) {
this.setState({ vehicles: seat.data + volkswagen.data })
}))
//.then(response => this.setState({ vehicles: response.data }))
.catch(error => console.log(error));
}
现在我猜我不能添加两个数据源,比如我this.setState({ vehicles: seat.data + volkswagen.data })
但是如何才能做到这一点?我只是希望将该API请求中的所有数据都放入一个状态。
这是我收到的当前错误:
TypeError: Cannot read property 'setState' of null(…)
由于
答案 0 :(得分:14)
您不能将数组“添加”在一起。使用array.concat函数(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat)将两个数组连接成一个,然后将其设置为状态。
componentWillMount() {
// Make a request for vehicle data
axios.all([
axios.get('/api/seat/models'),
axios.get('/api/volkswagen/models')
])
.then(axios.spread(function (seat, volkswagen) {
let vehicles = seat.data.concat(volkswagen.data);
this.setState({ vehicles: vehicles })
}))
//.then(response => this.setState({ vehicles: response.data }))
.catch(error => console.log(error));
}
答案 1 :(得分:2)
这有两个问题:
1)在您的.then中,“this”未定义,因此您需要在顶层存储对此的引用。
2)正如另一个答案所述,你不能在JS中一起添加数组并需要使用concat,虽然因为它们是服务器响应我也会添加一个默认值来阻止它出错如果那些实际上并没有给你回报。
我认为它应该是一样的:
componentWillMount() {
// Make a request for vehicle data
var that = this;
axios.all([
axios.get('/api/seat/models'),
axios.get('/api/volkswagen/models')
])
.then(axios.spread(function (seat, volkswagen) {
var seatData = seat.data || [];
var volkswagenData = volkswagen.data || [];
var vehicles = seatData.concat(volkswagenData);
that.setState({ vehicles: vehicles })
}))
.catch(error => console.log(error));
}
答案 2 :(得分:1)
我想提一些不同的东西。根据反应生命周期,你应该更喜欢用componentDidMount()
方法调用api。
" componentDidMount()。需要DOM节点的初始化应该放在这里。如果需要从远程端点加载数据,这是实例化网络请求的好地方。"
https://reactjs.org/docs/react-component.html#componentdidmount
答案 3 :(得分:0)
constructor(){
super();
this.state = {};
}
componentDidMount(){
axios.all([
axios.post('http://localhost:1234/api/widget/getfuel'),
axios.post('http://localhost:1234/api/widget/getdatarate')
])
.then(axios.spread((fuel,datarate) => {
this.setState({
fuel:fuel.data.data[0].fuel,
datarate:datarate.data.data[0].data
})
console.log(this.state.fuel)
console.log(this.state.datarate)
}))
}