$http.get('http://server/myapi', {
cache: true
}).success(function() {//处理成功的情况});
$http.get 添加了缓存,我请求记录,第一次请求网址上得数据,之后我刷新了很多次再也不会请求数据了。。这里缓存的更新机制是什么?在什么情况下能再次获得网址上得数据?
欢迎选择我的课程,让我们一起见证您的进步~~
一般的には、AngularCache をお勧めします https://github.com/jmdobry/angular-cache
時間ごとに有効期限を設定できます
キャッシュを保存する
var $httpDefaultCache = $cacheFactory.get('$http');
その後、制御できます $httpDefaultCache.remove(key);// key は /api/user/current/51a9020d91799f1e9b8db12f などの URL です
一般的には、AngularCache をお勧めします
https://github.com/jmdobry/angular-cache
時間ごとに有効期限を設定できます
キャッシュを保存する
var $httpDefaultCache = $cacheFactory.get('$http');
その後、制御できます
$httpDefaultCache.remove(key);
// key は /api/user/current/51a9020d91799f1e9b8db12f などの URL です