使用useraccounts设置页面标题:flow-router

时间:2015-12-16 01:17:32

标签: javascript meteor meteor-accounts flow-router

我刚刚开始真正潜入Meteor并开始一些个人项目,但我偶然发现了一些我还没有找到答案的东西。我试图设置用于登录,注册等的页面标题。是否有解决方案?我没有在文档中的任何地方看到我可以在这些配置语句中添加选项。

这是我的routes.jsx文件:

AccountsTemplates.configureRoute("changePwd");
AccountsTemplates.configureRoute("forgotPwd");
AccountsTemplates.configureRoute("resetPwd");
AccountsTemplates.configureRoute("signIn");
AccountsTemplates.configureRoute("signUp");
AccountsTemplates.configureRoute("verifyEmail");

谢谢!

1 个答案:

答案 0 :(得分:2)

你应该可以通过以下方式解决这个问题:

FlowRouter.triggers.enter([function(){
  document.title = FlowRouter.current().path;
]);

这将设置页面标题=所有路线的路径路径。如果您想要特定于路线的标题,则可以单独在每条路线上添加触发器。 (docs)