目标:能够直接链接到个人资料页面或刷新页面。
问题:如果您访问此个人资料页面(https://pimp_stack.meteor.com/pevprofile/PqZrKZYTfy7EHfQei),您会看到该页面几秒钟,然后您将被重新路由到主页。
如何留在个人资料页面上?
路由代码:
Router.route('/', function () {
// render the Home template with a custom data context
this.render('Home');
});
// Login / Logout
Router.route('/login');
Router.route('/logout', function () {
Meteor.logout();
this.render('Home');
});
// given a url like "/pevprofile/<id>
Router.route('/pevprofile/:_id', function () {
this.render('/pevprofile');
});
模板代码:
<template name="pevprofile">
<div class="container-fluid">
<h2>Profile</h2>
{{> PevDetails}}
</div>
</template>
<template name="PevDetails">
PEV Details
</template>