我有一个简单的User $资源,使用默认的$ http缓存实现像这样:
factory('User',function($resource){ return $resource(endpoint + '/user/current/:projectId',{},{get: { cache: true,method: 'GET' } } ); })
这工作得很好,即我的服务器只在我的应用程序中调用一次,然后从缓存中获取值。
但是我需要在执行某个操作后从服务器刷新值。有没有一个简单的方法来做到这一点?
谢谢。
保持布尔值并获得$ http缓存:
原文链接:https://www.f2er.com/angularjs/147026.htmlvar $httpDefaultCache = $cacheFactory.get('$http');
然后你可以控制它像任何其他缓存用$ cacheFactory,使用实例提供如下:
$httpDefaultCache.remove(key); // Where key is the relative URL of your resource (eg: /api/user/current/51a9020d91799f1e9b8db12f)