使用jQuery Ajax的混合协议(http / https)请求

时间:2016-09-27 10:30:53

标签: jquery ajax https

我需要使用ajax从远程服务器调用WebService,以便发送存储在导航器的sessionStorage中的一些信息,这是我的代码:

$.ajax({
    type: "POST",
    contentType: "application/json; charset=utf-8",
    url: "http://10.7.138.42:6061/CatchEvent.asmx/CollectData",
    data: JSON.stringify({ "pDataDictionnary": lDataCollected }),
    dataType: "json",
    async: true,
    success: function (data, textStatus) {
        if (textStatus == "success") {
            alert('success');
        }
    },
    error: function (exception) {
        alert('Exeption : ' + exception);
    }
});

我使用的游泳池位于https下,当我将通话请求更改为https时,它无效。我需要somtehing忽略调用方法,因为我无法更改它,因为应用程序位于我无法配置的远程服务器上。

0 个答案:

没有答案