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