gpt4 book ai didi

json - 我如何在 fetch 调用中解析简单的 json 响应

转载 作者:行者123 更新时间:2023-12-02 19:56:22 25 4
gpt4 key购买 nike

我在获取响应中获取简单的 json 对象。当我尝试访问该对象时,它被捕获。

this my reposnse
{
"islogin": true
}



fetch(url, data)
.then(res => {console.log(res);return res.json()})
.then(
(result) => {
console.log("rsult",JSON.stringify(result));
console.log(result.islogin);
console.log("1");
console.log("authentication success");
})
.catch((error) => { window.alert("error", error);
console.log("authentication failed");
});

我期望 result.islogin 为 true/false。但它不会进入 then(result) 回调。

最佳答案

fetch(URL, {
method: "POST", // "GET/POST"
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify(data)
})
.then(r => r.json())
.then(r => {
console.log('Response', r) // You will get JSON response here.
}).catch(error => console.error('Error', error))

由于缺少内容类型 header ,有时由于未对请求负载进行字符串化,我遇到了类似的问题。尝试这段代码,看看它是否有效。上面是我在我的项目中使用的工作片段。

关于json - 我如何在 fetch 调用中解析简单的 json 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56932194/

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