17

在 Meteor 中,我使用 Backbone 为我的应用程序中的不同页面提供路由。我目前有一个个人资料和一个管理页面。当我进入个人资料页面时,它会按原样显示,但是当我进入管理页面时,Meteor 会退回到主页。

作为旁注,如果有人对 Meteor 中的页面有更好的模式或最佳实践,请随时分享,因为这非常麻烦。

我使用以下模板来决定要显示的页面:

<template name="root">
    {{> navbar}}
    {{#if pageIs "profile"}}
      {{> profile}}
      {{else}}{{#if pageIs "administration"}}
        {{> administration}}
      {{else}}
        {{> main_page}}
      {{/if}}
    {{/if}}
</template>

pageIs方法如下:

Template.root.pageIs = function(page){
    console.log(Session.get('page'));
    return page === Session.get('page');
}

我的主干路由器中的以下代码:

var ProtonRouter = Backbone.Router.extend({
    routes: {
        "profile": "profile",
        "admin": "administration",
        "administration":"administration"
    },
    profile: function () {
        Session.set('page','profile');
    },
    administration: function (){
        Session.set('page', 'administraion');
    },
    mainPage: function(){
        Session.set('page',null);
    }
});

pageIs 方法中的日志语句将记录 undefined 几次,然后记录正确的页面,即使在管理时也是如此,但是 Meteor 似乎无论如何都不会重新加载选定的页面,并且模板仍然会命中最后一个 else 语句。

4

3 回答 3

25

更新: Iron 路由器被弃用,取而代之的是 Flow 路由器。有强烈的迹象表明,未来流路由器将作为核心 Meteor的一部分得到支持。

https://github.com/meteorhacks/flow-router

OUTDATED:以前常用的路由器是 Iron Router:

https://github.com/EventedMind/iron-router

在发布时,Iron Router 结合了两个最广泛使用的流星路由器(meteor-routermini-pages)的作者的努力,并且是流路由器之前 Meteor 的事实上的官方路由器。

于 2013-09-13T21:39:16.463 回答
9

很多人使用这个路线系统:

https://github.com/tmeasday/meteor-router

它非常易于使用并且专为 Meteor 制作。

于 2012-11-29T19:10:33.413 回答
1

在 Meteor 的早期,推荐使用 Backbone 进行路由。

Andrew 在他的帖子中指出的路由器,已经成为最受欢迎的选择:https ://github.com/iron-meteor/iron-router

一个更简约的解决方案是流路由器:https ://github.com/meteorhacks/flow-router

要做出明智的决定使用哪一个,您可以阅读两个路由器的差异。

于 2015-04-28T07:56:08.983 回答