我在 MVC4 中创建了 REST API,当我编写来自提琴手的请求时它工作正常。但是在我的应用程序中,我需要通过 jsonp 调用,因为它会跨域请求。但是当我调用这个服务时,它给了我如下所示的错误:
Jquery JsonP 调用..
$.ajax({
type: "POST" ,
url: "http://127.0.0.1:81/api/sites/GetDomainAvailability?apikey=asfasfdsf&callback=?",
data: { SubDomain: subDomain, ParentDomain: parentDomain, ResellerId: resellerId },
cache: false,
contentType: "application/json; charset=utf-8",
success: function (response) {
if (callback)
callback(response.d);
},
error: function (response) {
if (callback)
error(response.d);
},
});
错误: