2
我使用AngularJS做這樣的請求:AngularJS:HTTP缺少頭請求
var config = { headers: {
'Authorization': 'somehash',
'Content-Type': 'application/json; charset=UTF-8'
} };
$http.get('http://example.com', config)
.then(function(response) {
$scope.response = response;
}, function(response) { });
請求被解僱,但是當我檢查在Firefox(螢火蟲)的請求缺少授權的/ Content-Type頭文件我已經設置,它返回與CORS相關的「200選項請求」。無論如何,我想知道這個問題是否真的與CORS相關或丟失了標題,並且在某種情況下或另一種情況下是什麼解決方案。
在OPTIONS之後必須發送一個GET請求:請求是否提供了標題? – sp00m