我有一个名为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"
我想在反应表呈现后执行一段代码。我曾尝试将其置于onCreated
inboxSection
事件中,如此:
Template.inboxSection.onCreated ->
# do something with the reactive table...
但这不起作用。如何在反应表呈现后执行某些代码?
答案 0 :(得分:1)
尝试
Template.inboxSection.onRendered ->
并查看是否有诀窍。