所以我有一个导航栏,我已经进入了“游戏”中一个名为“Cross”的子目录,所以,/games/cross。现在从那个页面,我试图从导航栏再次访问游戏页面,但它显示 /games/games... 我该如何解决这个问题?我有以下...
Router.configure({
layoutTemplate: 'layoutDefault'
});
Router.route('/', function(){
this.render('main');
});
Router.route('/contact', {
template: 'contact'
});
Router.route('/games', {
template: 'games'
});
Router.route('/games/cross', {
action: function() {
if(Roles.userIsInRole(Meteor.user(), ['normal' , 'admins'])) {
this.render('cross')
}
else
this.render('denied')
}
});