gpt4 book ai didi

javascript - 如何在 Promise 中获取数据数组

转载 作者:太空宇宙 更新时间:2023-11-04 16:24:23 25 4
gpt4 key购买 nike

我在我的 React JS 应用程序上调用 API:

result = fetch('http://localhost:5000/cities')

result.then(function(response) {
console.log(response.json());
})

然后输出日志:

Promise
__proto__ : Promise
[[PromiseStatus]] : "resolved"
[[PromiseValue]] : Array[5]
0: Object
1: Object
2: Object
3: Object
4: Object
length: 5
__proto__: Array[0]

如何获取数组上的数据?

我需要获取城市名称列表

最佳答案

response.json() 行返回一个解析为解析后的 JSON 的 Promise。

你可以简单地写

result.then(function(response) {
return response.json();
}).then(function (data) {
console.log(data);
});

关于javascript - 如何在 Promise 中获取数据数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40353583/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com