react-native async function returns promise 但不是我的 json 数据?
react-native async function returns promise but not my json data?
我正在学习 react-native,但我 运行 遇到了一个问题。为什么从异步函数 return 获取 return 上的数据是一个承诺,但在异步函数本身中,它正确地 return 是一个对象数组?
在 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)
return 是一个带有奇数数据的承诺:
Promise {_40: 0, _65: 0, _55: null, _72: null}
... 我再也找不到我的 json 对象了。为什么是这样?更重要的是,如何在 componentDidMount()
中检索我的 json 数据,以便将其设置为 dataSource
?
由于getData()
是一个promise,你应该可以获取then
块中的数据,如下所示:
componentDidMount() {
this.getData()
.then((data) => {
this.setState({
dataSource:this.state.dataSource.cloneWithRows(data),
})
});
}
另一种类似于提问者原代码的做法:
async componentDidMount() {
let data = await this.getData();
console.log(data);
this.setState({
dataSource:this.state.dataSource.cloneWithRows(data),
})
}
或者另一种方式是
async componentDidMount() {
const { data: dataSource = [] } = await this.getData();
this.setState({dataSource})
}
这会将您的数据复制到不可变对象并重新分配名称,同时为对象设置默认值dataSource
我正在学习 react-native,但我 运行 遇到了一个问题。为什么从异步函数 return 获取 return 上的数据是一个承诺,但在异步函数本身中,它正确地 return 是一个对象数组?
在 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)
return 是一个带有奇数数据的承诺:
Promise {_40: 0, _65: 0, _55: null, _72: null}
... 我再也找不到我的 json 对象了。为什么是这样?更重要的是,如何在 componentDidMount()
中检索我的 json 数据,以便将其设置为 dataSource
?
由于getData()
是一个promise,你应该可以获取then
块中的数据,如下所示:
componentDidMount() {
this.getData()
.then((data) => {
this.setState({
dataSource:this.state.dataSource.cloneWithRows(data),
})
});
}
另一种类似于提问者原代码的做法:
async componentDidMount() {
let data = await this.getData();
console.log(data);
this.setState({
dataSource:this.state.dataSource.cloneWithRows(data),
})
}
或者另一种方式是
async componentDidMount() {
const { data: dataSource = [] } = await this.getData();
this.setState({dataSource})
}
这会将您的数据复制到不可变对象并重新分配名称,同时为对象设置默认值dataSource