我认为这是一个很好的用例
Ember.run.later,它限制了函数调用的频率。
您可以向模型添加刷新,类似于以下内容:
App.Model = DS.Model.extend({ poll: function() { var _this = this; Ember.run.later( function() { _this.reload(); _this.poll(); }, 500); }.observes('didLoad'),});


