angularjs – Angular $http:在’timeout’配置上设置一个承诺

前端之家收集整理的这篇文章主要介绍了angularjs – Angular $http:在’timeout’配置上设置一个承诺前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在角度 $http docs中,它提到您可以将“超时”配置设置为数字或承诺。

timeout – {number|Promise} – timeout in milliseconds,or promise that
should abort the request when resolved.

但我不知道如何使用承诺使这项工作。我如何设定一个数字和承诺?
基本上我想知道http呼叫(promise)是否由于超时或其他原因而错误。我需要能够说出差异。
感谢任何帮助!

这段代码是从 $httpBackend source code
if (timeout > 0) {
  var timeoutId = $browserDefer(timeoutRequest,timeout);
} else if (timeout && timeout.then) {
  timeout.then(timeoutRequest);
}

function timeoutRequest() {
  status = ABORTED;
  jsonpDone && jsonpDone();
  xhr && xhr.abort();
}

timeout.then(timeoutRequest)意味着当承诺得到解决(不被拒绝)时,将调用timeoutRequest并终止xhr请求。

如果请求超时,则reject.status === 0(注意:如果网络发生故障,则reject.status也将等于0),一个示例:

app.run(function($http,$q,$timeout){

  var deferred = $q.defer();

  $http.get('/path/to/api',{ timeout: deferred.promise })
    .then(function(){
      // success handler
    },function(reject){
      // error handler            
      if(reject.status === 0) {
         // $http timeout
      } else {
         // response error status from server 
      }
    });

  $timeout(function() {
    deferred.resolve(); // this aborts the request!
  },1000);
});
原文链接:https://www.f2er.com/angularjs/145094.html

猜你在找的Angularjs相关文章