4

我目前有一个模板,其中有一个{{#each}}循环。{{#each}}我正在尝试找到一种方法来在该循环完成时触发特定功能。Template.rendered仅在第一次渲染模板时运行,因此不幸的是它不起作用。

有什么可以做到这一点吗?

4

1 回答 1

5

我会这样做:

Template.foo.rendered=function(){
  // NEW in 0.8.3, use this.computation=Deps.autorun and
  // this.computation.stop() in destroyed callback otherwise
  this.autorun(function(){
    var cursor=Foo.find({/* same query you feed the #each with */});
    cursor.forEach(function(foo){
      // transformations on the updated model ?
      // this is important to call forEach on the cursor even if you don't do
      // anything with it because it actually triggers dependencies on documents
    });
    NEW in 0.9.1, use Deps otherwise
    Tracker.afterFlush(function(){
      // here you are guaranteed that any DOM modification implied by the
      // each loop is finished, so you can manipulate it using jQuery
      this.$(".foo-item").doStuff();
    }.bind(this));
  }.bind(this));
};

这段代码设置了一个模板本地自动运行(当模板从 DOM 中移除时计算自动停止),以forEach使用与 #each 参数相同的查询来跟踪通过游标(使用)对集合所做的更改。

每当数据库被修改时,它将再次运行,如果您愿意,您可以迭代修改过的文档。

正在修改的数据库,它还将使#each块的计算设置无效并执行 DOM 元素插入/修改/删除。

在由 创建的模板计算中this.autorun,我们不确定 DOM 操作是否已经发生,这就是我们Tracker.afterFlush在 DOM 再次冻结后使用 a 运行代码的原因。

如果在每次#each 失效后你必须触发的代码段不使用 DOM,你可以忘记这些Tracker.autoFlush东西,但我认为它确实如此。

于 2014-07-30T20:07:19.800 回答