我想显示由cityId
定义的不同城市的帖子:
FlowRouter.route("/:cityId", {
name: 'postList',
action: function() {
console.log(FlowRouter.getParam("cityId"));
return BlazeLayout.render('mainLayout', {
top: 'header',
body: 'postList'
});
}
});
除此之外,我当然还有通用路线,例如' admin','注册'等等。
但是当我转到/signup
时,postList
路线会被激活,处理注册'单词作为城市ID,并且'注册'登录控制台。
定义FlowRouter.route("/postList/:cityId")
之类的路线不是一种选择。