如何在AngularJS中刷新/使$resource缓存失效

前端之家收集整理的这篇文章主要介绍了如何在AngularJS中刷新/使$resource缓存失效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的User $资源,使用默认的$ http缓存实现像这样:
factory('User',function($resource){
    return $resource(endpoint + '/user/current/:projectId',{},{get: 
            {
                cache: true,method: 'GET'
            }
        }
    );
})

这工作得很好,即我的服务器只在我的应用程序中调用一次,然后从缓存中获取值。

但是我需要在执行某个操作后从服务器刷新值。有没有一个简单的方法来做到这一点?

谢谢。

保持布尔值并获得$ http缓存:
var $httpDefaultCache = $cacheFactory.get('$http');

然后你可以控制它像任何其他缓存用$ cacheFactory,使用实例提供如下:

$httpDefaultCache.remove(key);
// Where key is the relative URL of your resource (eg: /api/user/current/51a9020d91799f1e9b8db12f)
原文链接:https://www.f2er.com/angularjs/147026.html

猜你在找的Angularjs相关文章