带有自签名证书的jQuery Ajax在Android中失败

时间:2013-03-12 07:23:52

标签: jquery ajax performance

我正在调用本地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
    });

0 个答案:

没有答案