gpt4 book ai didi

javascript - React Native - 获取 API response.text()?

转载 作者:行者123 更新时间:2023-11-28 04:40:27 24 4
gpt4 key购买 nike

我正在尝试在服务器和应用程序(客户端)之间创建双向通信。

字符串化的response.text()返回这个...有没有办法让它只返回文本?我做错了什么?

enter image description here

最佳答案

你的问题不清楚。您面临的问题是什么?服务器响应将始终是字符串。它可以是有效的 Json/xml 或纯文本。如果你想将其用作 JSON。

来源:https://facebook.github.io/react-native/docs/network.html

function getMoviesFromApiAsync() {
return fetch('https://facebook.github.io/react-native/movies.json')
.then((response) => response.json())
.then((responseJson) => {
return responseJson.movies;
})
.catch((error) => {
console.error(error);
});
}

关于javascript - React Native - 获取 API response.text()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43833474/

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