OAjax:如何处理服务器脱机和缓存不可用的scanerio?

时间:2017-10-24 17:02:39

标签: oajax.js

我正在使用oajax.js。有没有办法处理服务器脱机且数据在缓存中也不可用的情况?

1 个答案:

答案 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);
         }
    });