我正在使用oajax.js。有没有办法处理服务器脱机且数据在缓存中也不可用的情况?
答案 0 :(得分:0)
通常在给定的情况下oajax.js响应,它自己定义错误json对象,状态为404,所以你可以通过以下方式处理:
$oajax({url: "http://localhost/phonegap/getData.php" , success: function(result){
if(result.error){
//data is not found in cashe
}
},
error : function(err){
console.log(err);
}
});