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

这是我的routes.jsx文件:

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


谢谢!

最佳答案

您应该可以使用以下方法实现这一目标:

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


这将设置页面标题=所有路由的路由路径。如果需要特定于路线的标题,则可以在每个路线上分别添加触发器。 (docs)

10-04 15:14