我正在尝试使用React应用程序的一些自定义标头发出GET请求。
这是axios拦截器的代码:
addCaptchaHeaders(captcha, sgn, exp) {
// remove the old captcha headers
if (this.captchaHeadersInterceptor !== undefined) {
this.removeCaptchaHeader();
}
// Sign new captcha headers
this.captchaHeadersInterceptor = this.httpClient.interceptors.request.use(
config => {
// Add headers here
config.headers.common._captcha = captcha;
config.headers.common._sgn = sgn;
config.headers.common._exp = exp;
return config;
},
error => {
// Do something with request error
return Promise.reject(error);
}
);
}
以下是预检请求的响应标头:
Access-Control-Allow-Headers: origin, content-type, accept, authorization, _captcha, _sgn, _exp
Content-Length: 0
Server: Jetty(9.3.24.v20180605)
以下是预检请求的请求标头:
Accept: */*
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9,sl;q=0.8
Access-Control-Request-Headers: _captcha,_exp,_sgn
Access-Control-Request-Method: GET
Connection: keep-alive
Host: localhost:8086
Origin: http://localhost:3000
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.92 Safari/537.36
在预检之后,实际请求的标头是相同的。因此,Access-Control-Request-Headers: _captcha,_exp,_sgn
而不是自定义请求标头。
认为这是一个axios配置问题,我使用fetch发出了相同的请求:
fetch(
"http://localhost:8086/podatki/parcela/search?parcela=1727&count=50&offset=0",
{
method: "GET",
headers: {
_captcha: res,
_sgn: sgn,
_exp: exp
}
}
);
结果是相同的。
浏览器与服务器之间的通信是否有问题?如果是这样,响应头中是否缺少某些内容?
对邮递员执行相同的请求。
答案 0 :(得分:0)
您在哪里检查标题? Chrome开发人员工具确实确实会这样显示它们,但只有在请求加载失败时(由于缺少“ Access-Control-Allow-Origin”标头-在这种情况下,即使服务器返回200也会失败)或其他任何原因)