我如何解析提取调用中的简单json响应

时间:2019-07-08 09:41:43

标签: json reactjs fetch

我在获取响应中得到了一个简单的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(结果)回叫。

1 个答案:

答案 0 :(得分:0)

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))

由于缺少Content-Type标头,有时是因为没有对请求有效内容进行字符串化处理,所以我遇到了类似的问题。尝试这段代码,看看它是否有效。上面是我用于项目的工作片段。