0
是否可以緩存某些HTTP直到網址變更使用參數:如何在Angular中緩存http直到參數改變?
app.factory('dataService', function ($http,$rootScope) {
return {
getData: function() {
return $http.get(rest.getData
+ $rootScope.number + "/" + $rootScope.blb
).then(function (result) {
return result.data;
});
}
}
});
所以,當控制器$ rootScope.number的變化,我需要再次訪問http,直到那麼它應該被緩存。這是可能的和如何?