我正在学习反应原生,我遇到了一个问题。为什么从异步函数返回数据会返回一个promise,但在async函数本身,它会正确返回一个对象数组?
在componentDidMount()
上,我调用我的异步函数,而异步函数又会获取到一个api url:
componentDidMount() {
let data = this.getData();
console.log(data); // <-- Promise {_40: 0, _65: 0, _55: null, _72: null}
this.setState({
dataSource:this.state.dataSource.cloneWithRows(data),
})
}
async getData() {
const response = await fetch("http://10.0.2.2:3000/users", {
method: 'GET',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
}
});
const json = await response.json();
console.log(json); // <-- (5) [Object, Object, Object, Object, Object]
return json;
}
在console.log(json)
中,我获得了正确的json对象列表,我可以使用json[0].name
访问它们。但稍后,console.log(data)
会返回奇数数据的承诺:
Promise {_40: 0, _65: 0, _55: null, _72: null}
...我再也找不到我的json对象了。为什么是这样?更重要的是,如何在componentDidMount()
中检索我的json数据,以便将其设置为dataSource
?
答案 0 :(得分:17)
由于getData()
是一个承诺,您应该能够在then
块中获取数据,如下所示:
componentDidMount() {
this.getData()
.then((data) => {
this.setState({
dataSource:this.state.dataSource.cloneWithRows(data),
})
});
}
答案 1 :(得分:4)
另一种类似于提问者原始代码的方法:
async componentDidMount() {
let data = await this.getData();
console.log(data);
this.setState({
dataSource:this.state.dataSource.cloneWithRows(data),
})
}
答案 2 :(得分:0)
或者另一种方式是
async componentDidMount() {
const { data: dataSource = [] } = await this.getData();
this.setState({dataSource})
}
这会将您的数据复制到一个不可变的对象,并重新命名该对象,还为对象dataSource
设置默认值