在Angular中阻止多个$ http请求。有没有更好的办法?

在Angular中阻止多个$ http请求。有没有更好的办法?,第1张

在Angular中阻止多个$ http请求。有没有更好的办法?

首先,我认为没有必要将其包装

HttpPromise
到另一个承诺中。在不赞成使用
success/error
方法的情况下,您应该仅依靠该方法,并将当作常规承诺。
then()``HttpPromise

为了确保发送一次请求,您实际上可以跟踪

HttpPromise
创建的第一个请求,并在随后的函数调用中返回相同的promise。

这是一项服务,它将接受API端点作为参数,并确保仅向该API发送一个请求。

app.factory('$httpOnce', [ '$http', '$cacheFactory',  function ($http, $cacheFactory) {    var cache = $cacheFactory('$httpOnce');    return function $httponce(url, options) {      return cache.get(url) || cache.put(url, $http.get(url, options)        .then(function (response) {          return response.data;        }));    };  }]);

用法

function log(data) {  console.log(data);}// issues an HTTP request$httponce('https://api.github.com/').then(log);// does not issue an HTTP request, returns the same promise as above$httponce('https://api.github.com/').then(log);// ...// HTTP request completes somewhere, both promises above are resolved// ...setTimeout(function () {  // immediately resolved  $httponce('https://api.github.com/').then(log);}, 5000);

这是一个演示。您可以在开发工具中看到仅发出一个请求。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4957195.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存