我有一个名为inboxSection的模板。在该模板中,我有一个reactive table。代码看起来像这样:

template(name="inboxSection")
  .col-xs-12.curator-inbox-section-head
    .pull-left
      b {{formattedDate}}
    .pull-right
    +reactiveTable collection=posts settings=settings selector=selector class="curator-inbox-table" rowClass="curator-inbox-table-row"


我想在反应表渲染后执行一段代码。我曾尝试将其放在onCreatedinboxSection事件中,如下所示:

Template.inboxSection.onCreated ->
   # do something with the reactive table...


但这不起作用。反应表渲染后如何执行一些代码?

最佳答案

尝试

Template.inboxSection.onRendered ->


看看是否能解决问题。

08-27 06:38