我的Chrome打包应用中的ajax调用出错:
净:: ERR_INSECURE_RESPONSE
有没有办法在客户端(在我的ajax调用中的chrome应用程序中)或服务器端修复此问题?
$.ajax({
url : "https://remote_IP/myscript.php",
type : "GET",
crossDomain : true,
cache : false,
data: {
login:login,
password:pwd
},
dataType : "json",
success : function(json)
{
var status = json.status;
if(status == "NOK")
{
cb('error');
}
else
{
cb('true');
}
},
error : function error(jsonError, ts,et)
{
ajaxError(jsonError, ts,et,cb);
}
});
答案 0 :(得分:-1)