您好,我正在尝试使用jquery ajax post方法来管理Web api,但是却收到错误消息
已被CORS政策阻止:对预检请求的响应未通过访问控制检查:所请求的资源上没有'Access-Control-Allow-Origin'标头。
我的代码在这里
$.ajax({
url: '/UPLOAD/HSRP/UploadFile',
type: "POST",
contentType: false, // Not to set any content header
processData: false, // Not to process data
data: fileData,
async: false,
success: function (result) {
if (result != "") {
for (var i = 0; i < result.length; i++) {
console.log(JSON.stringify(result[i]));
$.ajax({
url:
'MyURL',
type: "GET",
data: JSON.stringify(result[i]),
dataType: "json",
contentType: "application/json",
success: function (result) {
console.log(result);
},
error: function (resule) {
console.log(result);
}
});
}
/*$('#FileBrowse').find("*").prop("disabled", true);
LoadProgressBar(result); //calling LoadProgressBar function to load the progress bar.
*/
}
},
error: function (err) {
alert(err.statusText);
}
});