如何在backbone.js中进行轮询



嗨,我正在使用backbone.js开发一个paly2.0框架应用程序(使用java)。在我的应用程序中,我需要定期从数据库中获取表数据(用于显示即将发生的事件列表的用例,以及是否应该从列表中删除交叉的旧事件)。我正在获取要显示的数据,但问题是定期访问数据库。为此,我尝试根据这些链接使用backbone.js轮询概念,http://kilon.org/blog/2012/02/backbone-poller/。但他们没有从数据库中轮询最新的集合。请建议我如何实现这一点或任何其他替代方案?在adv.

中感谢

没有使用Backbone的原生方法。但是,您可以实现长轮询请求,并在集合中添加一些方法:

// MyCollection
var MyCollection = Backbone.Collection.extend({
  urlRoot: 'backendUrl',
  longPolling : false,
  intervalMinutes : 2,
  initialize : function(){
    _.bindAll(this);
  },
  startLongPolling : function(intervalMinutes){
    this.longPolling = true;
    if( intervalMinutes ){
      this.intervalMinutes = intervalMinutes;
    }
    this.executeLongPolling();
  },
  stopLongPolling : function(){
    this.longPolling = false;
  },
  executeLongPolling : function(){
    this.fetch({success : this.onFetch});
  },
  onFetch : function () {
    if( this.longPolling ){
      setTimeout(this.executeLongPolling, 1000 * 60 * this.intervalMinutes); // in order to update the view each N minutes
    }
  }
});
var collection = new MyCollection();
collection.startLongPolling();
collection.on('reset', function(){ console.log('Collection fetched'); });

相关内容

  • 没有找到相关文章

最新更新