【发布时间】:2023-03-06 01:31:01
【问题描述】:
我正在使用 Redux 工具包做出反应,但我无法访问响应标头
return await client
.get(new Users())
.then((data) => {
// how to I access the Response Header here?
console.log("data", data);
return data;
})
.catch((error) => {
});
【问题讨论】:
标签: javascript redux servicestack