使用iron-router时设置HTML标题

时间:2013-11-09 20:28:21

标签: javascript meteor handlebars.js iron-router

如何在使用铁路由器时最佳地设置HTML标题?这就是我想做的事情:

<template name="layout">
    <head><title>{{KAZOOM}}</title></head>
    <body>
        {{> menu}}
        {{yield}}
    </body>
</template>

<template name="example">
    {{KAZOOM 'example page'}}
    That's just an example page
</template>

<template name="foo">
    {{KAZOOM 'foo page'}}
    Another example page with different HTML title
</template>

您是否看到KAZOOM如何及时回归以设置HTML标题?我希望这样做的原因是我认为HTML标题是内容的一部分。我可以通过编辑生成它的模板来调整页面的HTML标题。不幸的是,我没有看到实现这一目标的干净方法。我能想到的最接近的是命名率,然后标题将由路线设定,而不是模板。

另一种可能性是放弃布局模板并始终包含标题:

<template name="head">
    <head><title>{{this}}</title></head>
    {{> menu}}
</template>

<template name="example">
    {{> head 'example page'}}
    That's just an example page
</template>

<template name="foo">
    {{> head 'foo page'}}
    Another example page with different HTML title
</template>

这不是很好。你有适当的解决方案吗?

3 个答案:

答案 0 :(得分:16)

在Iron路由器中设置document.title onAfterRun:

var pageTitle = 'My super web';
Router.map(function() {
   this.route('user', {
      onAfterRun: function() {
        document.title = 'User ' + this.params.name + ' - ' + pageTitle;
      }
   });
});

修改

如果要在模板中设置标题,请创建自定义Handlebars帮助程序(客户端代码):

Handlebars.registerHelper("KAZOOM", function(title) {
    if(title) {
        document.title = title;
    } else {
        document.title = "Your default title";
    }
});

在您使用它时在模板中使用它

{{KAZOOM 'example page'}}

{{KAZOOM}}

表示默认标题。

编辑2015年7月26日:对于新的铁路由器,它看起来像:

Router.route('/user', {
  onAfterAction: function() {
    document.title = 'page title';
  }
});

答案 1 :(得分:10)

我正在使用iron-router 0.7.1。

并在libs/router.js

中有这个
Router.onAfterAction(function() {
        document.title = 'My Site - '+this.route.name;
      }
);

它处理我的所有路线,所以我不必把它放在每条路线上。

答案 2 :(得分:3)

我更喜欢将title属性与路径定义一起存储。

正如@nullpo对此问题https://github.com/iron-meteor/iron-router/issues/292#issuecomment-38508234

所建议的那样
Router.route('/admin/users', {
    name: 'admin_users',
    template: 'admin_users',
    title: 'User Manager'
    data: function() {
        return Meteor.users.find();
    },
    waitOn: function() {
        return Meteor.subscribe('users_admin');
    }
});

Router.after(function(){
    if (this.route.options.title)
        document.title = this.route.options.title + ' - my cool site';
});

希望这有帮助。