我是流星和一般编码的新手。我需要将其更改为流路由器,以便我可以让评论正常工作(我猜)。有人想伸出援手吗?
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."