redux-thunk 获取解析响应
redux-thunk fetch parse response
我是 redux 和 reactjs 的新手,我正在尝试将一些服务器端数据提取到我的代码中。
这是我的 thunk fetch:
fetch(`/WebApp/Dashboard/CreateAlert`).then(response => {
console.log(response);
});
这是我在控制台中看到的:
在 fiddler 中,我看到响应如预期的那样 "Success"。
这个响应是否有效,我该如何解析它,我有点困惑,网上的信息很少。
编辑:
我改为:
fetch(url).
then(response => response.json())
.then(json => {
console.log(json);
});
然后我收到了对象。现在,当我发送复杂类型(列表)时,我看到以下内容:
如果要解析 json 响应:
fetch(`/WebApp/Dashboard/CreateAlert`)
.then(response => response.json())
.then(json => {
console.log(json);
});
有关可用于解析响应正文的所有方法,请参阅 https://developer.mozilla.org/en-US/docs/Web/API/Body。
我是 redux 和 reactjs 的新手,我正在尝试将一些服务器端数据提取到我的代码中。
这是我的 thunk fetch:
fetch(`/WebApp/Dashboard/CreateAlert`).then(response => {
console.log(response);
});
这是我在控制台中看到的:
在 fiddler 中,我看到响应如预期的那样 "Success"。
这个响应是否有效,我该如何解析它,我有点困惑,网上的信息很少。
编辑:
我改为:
fetch(url).
then(response => response.json())
.then(json => {
console.log(json);
});
然后我收到了对象。现在,当我发送复杂类型(列表)时,我看到以下内容:
如果要解析 json 响应:
fetch(`/WebApp/Dashboard/CreateAlert`)
.then(response => response.json())
.then(json => {
console.log(json);
});
有关可用于解析响应正文的所有方法,请参阅 https://developer.mozilla.org/en-US/docs/Web/API/Body。