search

Home  >  Q&A  >  body text

angular.js - angular 的缓存问题

$http.get('http://server/myapi', {

cache: true  

}).success(function() {//处理成功的情况});

$http.get 添加了缓存,我请求记录,第一次请求网址上得数据,之后我刷新了很多次再也不会请求数据了。。这里缓存的更新机制是什么?在什么情况下能再次获得网址上得数据?

天蓬老师天蓬老师2744 days ago502

reply all(2)I'll reply

  • 黄舟

    黄舟2017-05-15 16:58:50

    Generally, I recommend AngularCache
    https://github.com/jmdobry/angular-cache

    Can be set to expire by time

    reply
    0
  • 大家讲道理

    大家讲道理2017-05-15 16:58:50

    Save cache

    var $httpDefaultCache = $cacheFactory.get('$http');

    Then you can control
    $httpDefaultCache.remove(key);
    // key is your url such as /api/user/current/51a9020d91799f1e9b8db12f

    reply
    0
  • Cancelreply