gpt4 book ai didi

javascript - react-native fetch 返回奇怪的响应

转载 作者:数据小太阳 更新时间:2023-10-29 06:05:28 25 4
gpt4 key购买 nike

我正在使用 fetch 从这样的 API 获取一些东西:

fetch('http://facebook.github.io/react-native/movies.json')
.then(
data => console.log(data),
error => console.log(error)
)

但是我得到的是下面的对象,并不是实际的数据

_bodyBlob: Blob
_bodyInit: Blob
headers: Headers
ok: true
status: 200
statusText: undefined
type: "default"
url: "http://facebook.github.io/react-native/movies.json"

谁能给我解释一下这是怎么回事?我做错了什么?

最佳答案

要从响应中获取数据,您必须调用 data.json(); 示例:

fetch('http://facebook.github.io/react-native/movies.json')
.then((response) => response.json())
.then((data) => {
console.log(data);
})
.catch((error) => {
console.log(error);
});

(假设响应在 json 中)。

关于javascript - react-native fetch 返回奇怪的响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38225550/

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