停止流星铁路由器自动渲染模板

时间:2016-01-15 23:40:17

标签: meteor iron-router meteor-blaze

我的路线:

Router.route('/profile/:_id', {
    layout:     'appTabs',
    template:   'appProfile',
    autoRender: false
  });

我的布局:

<template name="appTabs">
...
<a href="/profile/{{getUserId}}">
...
<section>
    {{> yield}}
  </section>
...
</template>

我的模板:

<template name="appProfile">
  <section>
    <div>my profile</div>
  </section>
</template>

麻烦的是我的路线会自动渲染。我的模板中有一个链接,我想在呈现模板之前等待它被点击。我如何实现这一目标?

0 个答案:

没有答案