我有一个调用Web服务API的函数。
function GetData() {
var prm =
{
EVENT_CODE: EvnCode
};
$.ajax({
url: 'http://00.00.00.000/CRM/geteventwisebudgetactualamount',
headers: {
'AuthKey': 'test',
'Content-Type': 'application/x-www-form-urlencoded',
},
type: 'POST',
contentType: 'application/x-www-form-urlencoded',
data: prm,
crossDomain: true,
dataType: 'json',
success: function (data) {
},
error: function (errMsg) {
console.log('AJAX FAILED, message : ' + errMsg);
}
});
}
它始终在标题中显示错误提及,请帮助解决此问题。
您需要设置 CORS 以接受调用 API 的来源。 即,如果调用此函数的应用程序 ABC.com 则 API 必须允许源 ABC.com。