Meteor - 设置文档标题

时间:2012-12-26 05:15:32

标签: meteor

有没有办法更改Meteor应用中的<title>元素?似乎模板仅在<body>

中处理

8 个答案:

答案 0 :(得分:43)

几乎在客户端JavaScript代码的任何位置:

document.title = "My new title";

答案 1 :(得分:38)

您可以扩展David Wihl的解决方案:

Deps.autorun(function(){
  document.title = Session.get("DocumentTitle");
});

然后你可以随时致电:

Session.set("DocumentTitle","New Document Title");

答案 2 :(得分:12)

如果您使用iron:router,则可以添加包manuelschoebel:ms-seo来处理标题以及元标记。这对静态和动态SEO数据非常有用:

Router.map(function() {
  return this.route('blogPost', {
    path: '/blog/:slug',

    onAfterAction: function() {
      var post = this.data().post;
      SEO.set({
        title: post.title,
        meta: {
          'description': post.description
        },
        og: {
          'title': post.title,
          'description': post.description
        }
      });
    }
  });
});

答案 3 :(得分:10)

您可以创建一个帮助器来设置标题(CoffeeScript):

UI.registerHelper "setTitle", ->
  title = ""
  for i in [0..arguments.length-2]
    title += arguments[i]
  document.title = title
  undefined

或在Js中相同:

UI.registerHelper("setTitle", function() {
  var title = "";
  for (var i = 0; i < arguments.length - 1; ++i) {
    title += arguments[i];
  }
  document.title = title;
});

然后你可以以复杂的方式使用它,它将被反应:

{{#if book}}
  {{setTitle book.title}}
{{else}}
  {{setTitle "My books"}}
{{/if}}

答案 4 :(得分:7)

我发现使用onBeforeAction在路由器中直接处理这类事情会更方便:

Router.map(function() {
  return this.route('StudioRoot', {
    path: '/',
    onBeforeAction: function() {
      return document.title = "My Awesome Meteor Application";
    }
  });
});

答案 5 :(得分:4)

您还可以包含不在模板中的<head> </head>标记。试试这个:

sample.html的内容:

<head>
    <title>my title</title>
</head>

<body>
    ...
</body>

<template name="mytemplate">
    ...
</template>

答案 6 :(得分:1)

我最终做了什么:

在Meteor.isClient中:

Meteor.startup(function() {
    Deps.autorun(function() {
        document.title = Session.get('documentTitle');
    });
});

现在var被设置为被动,进入路由器文件(如果还没有完成:meteor add iron:router。我的路由器文件是客户端和服务器)

Router.route('/', {
    name: 'nameOfYourTemplate',
    onBeforeAction: function () {
        Session.set('documentTitle', 'whateverTitleIWant');
        this.next();    //Otherwise I would get no template displayed
    }
});

如果您已经在head标签中设置了标题,则无关紧要。它会根据您的路线被这个替换。

答案 7 :(得分:-1)

我不得不寻找适用于ui-router的答案。我知道这可能不是你想要的答案。由于这个问题大约在2年前发布,我想如果有人来到这里寻找使用ui-router的解决方案,这个答案可以帮助他们:

<强> myApp.run.js

(function() {
  'use strict';

  angular
    .module('myApp')
    .run(run);

  run.$inject = ['$rootScope', '$state'];

  function run($rootScope, $state) {
    $rootScope.$on("$stateChangeSuccess", function(previousRoute, currentRoute){
      document.title = 'myApp - ' + currentRoute.data.pageTitle;
    });
  };

})();

<强> routes.js

(function() {
    'use strict';

    angular
      .module('myApp')
      .config(config);

    config.$inject = 
      ['$urlRouterProvider', '$stateProvider', '$locationProvider'];

    function config($urlRouterProvider, $stateProvider) {

        // ...
        $stateProvider
          .state('home', {
            url: '/',
            templateUrl: 'client/home/views/home.ng.html',
            controller: 'HomeController',
            data: {
              pageTitle: 'My Dynamic title'
            }
          })
    }
})();