gpt4 book ai didi

javascript - response.headers 中的 axios 不显示 x 操作

转载 作者:行者123 更新时间:2023-11-30 14:54:58 25 4
gpt4 key购买 nike

我对 API 响应有疑问。我们正在使用后端服务来注册异步用户。

我想检查用户是否注册,但我没有简单的消息作为响应,但我需要检查标题:

x-operation:operations/e18f9239-b66b-4a81-a7cb-622a40326057如果用户已使用此电子邮件注册,此 header 将告诉我是否将 api 请求发送到另一个端点。

在网络部分,我有以下响应 header :

Access-Control-Allow-Credentials:true
Access-Control-Allow-Origin:http://localhost:8080
Content-Length:0
Date:Wed, 22 Nov 2017 17:33:20 GMT
Server:Kestrel
Vary:Origin
x-operation:operations/e18f9239-b66b-4a81-a7cb-622a40326057
x-resource:account

根据我的要求,我正在使用 axios 库(react-app)

export function signupUser({ email, password }) {
return function(dispatch) {
axios.post(`${API_URL}/sign-up`, { email, password })
.then(response => {
console.log('response', response)
// browserHistory.push('/signin');
})
.catch((error) => {
// dispatch(authError(error.data.error))
console.log('error', error)
})
}
}

问题在于处理响应。我需要检查 x 操作,但我的响应中的 x 操作没有出现。

当我在 .then 中执行 console.log(response) 时,标题:{} 为空。这是 console.log(response)

response 
{data: "", status: 202, statusText: "Accepted", headers: {…}, config: {…}, …}
config:
{transformRequest: {…}, transformResponse: {…}, timeout: 0, xsrfCookieName: "XSRF-TOKEN", adapter: ƒ, …}
data:""
headers:{}
request:XMLHttpRequest {readyState: 4, timeout: 0, withCredentials: false, upload: XMLHttpRequestUpload, onreadystatechange: ƒ, …}
status:202
statusText:"Accepted"

如果我在 axios 响应中没有它,只出现在网络部分,我如何检查标题中的响应 x 操作?

最佳答案

尝试查看此 SO 帖子:Axios get access to response header fields

您需要确保您的服务器配置为允许客户端访问这些 header ,例如:Access-Control-Expose-Headers: x-operation 我相信。

关于javascript - response.headers 中的 axios 不显示 x 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47440992/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com