边缘浏览器Ajax文件上传调用WebApi无法正常工作

时间:2019-05-03 10:07:38

标签: javascript jquery html ajax asp.net-web-api

Edge浏览器问题:Edge浏览器中无法使用Ajax调用Web API,请让其他浏览器正常工作,包括IE。

function uploadPDFajaxcall(data, url) {
    $.support.cors = true;
    $.ajax({
        url: url,
        type: 'POST',
        data: data,
        cache: false,
        dataType: 'json',
        processData: false,
        crossDomain: true,
        //contentType: "application/json",
        contentType: false,
        success: function (data, textStatus, jqXHR) {

        },
        error: function (jqXHR, textStatus, errorThrown) {
            console.log('ERRORS: ' + textStatus);

        }
    });
}

实际:边缘浏览器出现错误(捕获)。让所有浏览器都按预期运行。

预期:应该成功访问网络API

0 个答案:

没有答案