我們如何執行角js的跨站點ajax請求?我曾嘗試這樣做:無法發送ajax請求到其他域 - 角js
$http.post('http://cross.local', data)
但瀏覽器拋出一個錯誤:
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin is therefore not allowed access.
,所以我說的頭
Access-Control-Allow-Credentials:true
Access-Control-Allow-Methods:GET,POST,DELETE,OPTIONS
Access-Control-Allow-Origin:*
但我仍然得到同樣的錯誤。
我哪裏錯了?
您將需要根據可靠的代理以及響應標頭顯示請求標頭。 –
當你說你添加了標題,你的意思是請求或迴應? –