标签: meteor meteor-blaze flow-router
有没有办法检测{{>Template.dynamic template=content}}何时更改然后运行某些功能?
{{>Template.dynamic template=content}}
答案 0 :(得分:0)
您可以将函数包装在template.autorun()块中,在您正在渲染的动态模板中(在他的rendered函数中)。
template.autorun()
rendered
如果您需要从外部跟踪它,您可以使用跟踪器Deps功能:您在自动运行块中声明更改。