在 Ember 应用程序中,假设您有一个观察者或一个观察数组的属性,如下所示:
topContributor: (function() {
// ... loop over articles (hence slow) ...
}).property('articles.@each.author')
更新articles
数组,例如通过 ember-data,总共会重复触发属性函数articles.length
。
当所有更改都完成并且运行循环被刷新时,有没有办法将更新折叠成一个惰性更新?