我正在调用本地HTML中存在的Ajax的HTTPS URL。即使不向服务器发送请求也总是失败。但改用HTTP工作正常。我在Android中尝试使用自签名证书。 下面是我的代码:`
$.ajax({ url : internalserverip, type : "POST", cache : false, data : pjsonstring, dataType : "json", success : function (json) { alert("before setjson "+JSON.stringify(json)); fnsetjson(json); }, error : function (result) { localStorage.setItem("alertTitle", "Failure"); localStorage.setItem("alertMsg", "server error"); alert('server error'+result.responseText+'and'+result.status); //endloader(); return "error"; }, async : false });