流星铁路由器配置文件页面刷新不起作用

时间:2016-01-20 19:20:08

标签: meteor refresh iron-router

目标:能够直接链接到个人资料页面或刷新页面。

问题:如果您访问此个人资料页面(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>

1 个答案:

答案 0 :(得分:0)

您可能需要重新检查一下。它在我的工作正常。我在几秒钟后看到个人资料页面没有重定向。

Screenshot