CORS過濾器啓用碼這是我的js文件,下面的代碼裏面.controller我應該在哪裏寫angularjs
xhr.onreadystatechange = function() {
if(xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200){
$http.post(smsHorizon,'Access-Control-Allow-Origin', '*').then(function(res){
res.addheader('Access-Control-Allow-Origin', '*');
res.addheader('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
res.addheader('Access-Control-Allow-Headers', 'Content-Type, Authorization, Content-Length, X-Requested-With');
if(res){
alert("OTP has been Send");
}
})
}
else{
}
}
這是編寫CORS的方式嗎?請幫忙!!!
你應該添加標題在服務器端 –
這是它使用另一個API –
的指南,以使服務器端CORS碼 - https://開頭enable-cors.org/ –