因此,我一直在我的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, vo
DB.users.get_all(function(response){
this.setState(result: response); // not required
return response // required but not working for react-native-db-model
});
我可以从这个方法返回响应吗?我使用的是react本机db-模型,而不是在setState()方法中设置响应。如有任何其他建议,将不胜感激。
提前谢谢。