我需要使用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忽略调用方法,因为我无法更改它,因为应用程序位于我无法配置的远程服务器上。