作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在获取响应中获取简单的 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/
我是一名优秀的程序员,十分优秀!