2

我已经阅读了有关 $cacheFactory 的内容,当涉及到 $http 时,它会通过 url 缓存所有内容。现在,我有一些更复杂的需求:

  1. 有一些项目的列表(用户、文章等)。该列表从服务器中提取并缓存到缓存中。

  2. 当应用程序请求单个项目时,它会进入缓存并:

    2.1。如果具有提供的密钥的项目存在,它将从缓存中提取

    2.2. 如果缓存列表中不存在该项目,它会转到服务器,当从服务器获得响应时,将该项目放入缓存列表,以便下次从缓存中拉出

  3. 当项目被保存到数据库时,它会获得一些密钥(自动编号或 guid)并且当服务器解析响应时:

    3.1。如果项目已存在于缓存中,则项目将与服务器数据合并/扩展

    3.2. 如果缓存中不存在项目,则只需将其添加到列表中

  4. 应用程序应该检查(每 10 秒)列表中是否有一些新的/更新的/删除的项目(由其他用户创建)并刷新它(对当前用户工作没有重大影响)

现在,1-3 很容易,4 应该手动启动或放入一些计时器。

额外的复杂性是当您有无限数量的查询组合时如何处理搜索。

我知道如何开发所有这些,但我想知道是否已经有针对 AngularJs 或通常用于 javascript 和 ajax 调用的经过验证的解决方案。

4

2 回答 2

9

可能需要创建自己的服务来做到这一点。

类似的东西(伪代码,因为我没有服务器来支持这些)......

app.factory('andrejsSuperAwesomeService', ['$cacheFactory', '$http', function($cacheFactory, $http) {

   //get your cache ready.
   var userCache = $cacheFactory('users');

   // start an interval to check for data.
   // TODO: add a public function to turn this on and off.
   setInterval(function(){
       //check for changes to the data.
       $http.get('/Get/New/User/Changes')
            .success(function(changes) {
                 if(!changes) return;
                 //we'll assume we get some collection of changes back,
                 // with some change type and the user data.
                 for(var i = 0; i < changes.length; i++) {
                      var change = changes[i];
                      switch(change.changeType) {
                          case 'delete':
                             // okay just remove the deleted ones.
                             userCache.remove(change.user.id);
                             break;
                          case 'addUpdate':
                             // if it's added or updated, let's just 
                             // remove and re-add it, because we can't know what
                             // we already have or don't have.
                             userCache.remove(change.user.id);
                             userCache.put(chnage.user.id, change.user);
                             break;
                      }
                 }
            });
   }, 10000); // every 10 secs
   return {
      users: {
           //a function to get a user. 
           get: function(userId, callback) {
               var user = userCache.get(userId);

               if(!user) {
                     //the user is not in the cache so let's get it.
                     $http.get('/Uri/To/Get/A/User?userId=' + userId)
                        .success(function(data) {
                           //great, put it in the cache and callback.
                           userCache.put(userId, data);
                           if(callback) callback(data);
                        });
               } else {
                     //we already have the user, callback.
                     if(callback) callback(data);
               }
           }
      }
   };
});

然后在您的控制器中,您将注入您的服务并像这样使用它:

andrejsSuperAwesomeService.users.get(12345, function(user) {
       //do something with user here.
       alert(user.name + ' is a naughty user!');
});
于 2012-10-22T18:06:51.010 回答
0

据我所知,还没有人做过这个,所以我自己做了,遵循 $http 和 Restangular 的标准使用。如果你想添加它,绝对是 fork 和 pull request。

https://github.com/learnist/angular-cache-proxy

于 2015-01-27T20:26:30.477 回答