您好我正在使用backbone.js处理paly2.0框架应用程序(使用java)。在我的应用程序中,我需要定期从数据库中获取表数据(对于显示即将发生的事件列表的用例以及是否应该从列表中删除旧事件)。我正在显示数据,但是问题是定期访问数据库。为此我尝试使用backbone.js轮询概念,根据这些链接Polling a Collection with Backbone.js,http://kilon.org/blog/2012/02/backbone-poller/。但他们没有从db中查询最新的集合。请建议我如何实现这个或任何其他选择? 谢谢你。
答案 0 :(得分:8)
使用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'); });