我正在嘗試使用Ajax從API請求信息。當試圖運行下面的代碼,我收到此錯誤:CORS預檢響應錯誤
XMLHttpRequest cannot load. Request header field cache-control is not allowed by Access-Control-Allow-Headers in preflight response.
下面的代碼:
var Onion = {
"async": true,
"crossDomain": true,
"url": "https://webhose.io/search?token=fc70c82d-7bd6-4bed-aafe-4d4e65c7e5db&format=json&q=&site=theonion.com&size=12",
"dataType": "json",
"method": "GET",
"headers": {
"cache-control": "no-cache",
"postman-token": "9a49be98-19cb-ebc6-9f52-4be90c88222b",
"Access-Control-Allow-Headers": true,
}
}
$.ajax(Onion).done(function (response) {
console.log(response);
console.log(response.posts[0].title);
我是一個開始編碼器,我相信我需要的東西添加到標題。有什麼建議麼?
在此先感謝您的幫助!
這意味着您嘗試訪問的網站未配置爲允許它。 – Pointy
預檢請求在發送CORS有效性檢查的最終請求之前完成。 檢查答案:http://stackoverflow.com/questions/8685678/cors-how-do-preflight-an-httprequest – jsertx