我有一个简单的User $ resource,它使用默认的$ http缓存实现,如下所示:
factory('User', function($resource){ return $resource(endpoint + '/user/current/:projectId', {}, {get: { cache: true, method: 'GET' } } ); })
这非常好用,即我的服务器在应用程序中仅被调用一次,然后从缓存中获取值。
但是我需要在执行某些操作后从服务器刷新值。有没有简单的方法可以做到这一点?
谢谢。
保留布尔值并获取$http缓存:
$http
var $httpDefaultCache = $cacheFactory.get('$http');
然后,您可以像$cacheFactory使用所提供的任何其他缓存一样控制它,这是下面提供的用法实例:
$cacheFactory
$httpDefaultCache.remove(key); // Where key is the relative URL of your resource (eg: /api/user/current/51a9020d91799f1e9b8db12f)