gpt4 book ai didi

meteor - 如何使用 Manuel Schoebel 的 SEO 包动态设置每页的标题?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:33:39 24 4
gpt4 key购买 nike

使用 Meteor 1.0.3.1 和 Iron Router,我需要为某些页面动态设置标题,同时为其他页面默认设置特定标题,使用 Manuel Schoebel's SEO package .如何为某个路由设置动态页面标题?

我通常这样设置 SEO:

Meteor.startup(->
[...]
SEO.config({
title: 'MusitechHub'
meta: {
'description': 'The hub for finding and publishing music technology projects'
}
})

undefined
)

最佳答案

如包装中所述README ,您可以使用 iron:router onAfterAction Hook 将标题动态设置为您想要的任何计算值:

Router.route("/post/:slug", {
onAfterAction: function() {
var post = Posts.findOne({
slug: this.params.slug
});
SEO.set({
title: post.title
});
}
});

关于meteor - 如何使用 Manuel Schoebel 的 SEO 包动态设置每页的标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28652178/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com