我是 redux 和 reactjs 的新手,我正在尝试将一些服务器端数据提取到我的代码中。
这是我的 thunk 获取:
fetch(`/WebApp/Dashboard/CreateAlert`).then(response => {
console.log(response);
});
这是我在控制台中看到的:
在提琴手中,我看到响应是预期的“成功”。
这个响应是否有效以及如何解析它,我有点困惑,网上的信息很少。
编辑:
我改为:
fetch(url).
then(response => response.json())
.then(json => {
console.log(json);
});
我收到了对象。现在,当我发送一个复杂类型(列表)时,我看到如下: