CROS Origin API调用问题?

时间:2017-08-27 14:46:59

标签: javascript jquery ajax api plugins

我在服务器' A'。

中托管我的MVC API

我尝试使用来自本机服务器的jquery ajax调用来调用API(服务器' A')。它按预期工作正常。

但是,当试图从服务器' B'中调用API时。我收到了一个错误。

  

否'访问控制 - 允许 - 来源'标头出现在请求的资源上

我的ajax调用如下

$.ajax({
    url: Url,
    type: "GET",
    data: Data,
    contentType: "application/json charset=utf-8",
    async: false,
    cache: false,
    error: function (xhr, ajaxOptions, thrownError) {
        console.log("Exception in ajaxRequest - " + xhr.status + ' - ' + thrownError);
    },
    success: function (data) {
        ResultData = $.parseJSON(data);
    }
});

0 个答案:

没有答案