我是流星和编码的新手。我需要将此更改为流路由器,以便我可以使注释工作(我猜)。有没有人想伸出援助之手?
Router.map(function () {
this.route('post/:id', {
waitOn: function() {
return [
Meteor.subscribe('post', this.params.id),
Meteor.subscribe('postComments', this.params.id)
]
},
data: function() {
return {
post: Posts.findOne({_id: this.params.id}),
comments: Comments.find({postId: this.params.id})
}
}
});
});
顺便说一下,我在应用程序中的所有内容上都使用了流量路由器,所以我猜铁与它的冲突让我这样:
Oops, looks like there's no route on the client or the server for url: "http://localhost:3000/recipe-book."