我在Axios上使用Vue JS 2.5:
"vue": "^2.5.17",
"vue-axios": "^2.1.4",
"axios": "^0.18.0",
我正尝试拨打POST呼叫,就像这样:
const data = querystring.stringify({
'email': email,
'password': password,
'crossDomain': true, //optional, added by me to test if it helps but it doesn't help
});
var axiosConfig = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
// "Access-Control-Allow-Origin": "*",
'Accept': '*',
}
};
axios.post(url, data, axiosConfig)
.then((response) => {
console.log('response');
console.log(response);
})
.catch((error) => {
console.log('error');
console.log(error);
});
我也尝试了没有“ axiosConfig”参数的情况。但每次进入陷阱时,都会显示以下消息:错误:网络错误
在浏览器的“网络”选项卡中,我的状态为200,响应良好(带有有效的json),基本上可以运行,但是Axios返回错误且没有响应。
控制台还会输出以下警告:Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://url/api/page. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing).
我尝试从邮递员打同样的电话,效果很好。区别在于Axios使用我的localhost:8080发送标头:“ Origin”和“ Referrer”,这与我正在调用的API url不同。
如何在没有出现此错误的情况下从axios发出此呼叫?谢谢。
编辑
如果我使用PHP,它就可以工作:
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://myurl",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "------WebKitFormBoundaryTrZu0gW\r\nContent-Disposition: form-data; name=\"email\"\r\n\r\nemail\r\n------WebKitFormBoundaryTrZu0gW\r\nContent-Disposition: form-data; name=\"password\"\r\n\r\npassword\r\n------WebKitFormBoundaryTrZu0gW--",
CURLOPT_HTTPHEADER => array(
"Postman-Token: 62ad07e5",
"cache-control: no-cache",
"content-type: multipart/form-data; boundary=----WebKitFormBoundaryTrZu0gW",
"email: email",
"password: password"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
我只是复制粘贴了生成的Postman呼叫,并从另一个页面尝试了它,所以效果很好。因此,这不是CORS问题,而是我的Javascript调用问题。