ですし、私はこのような条件を探していた場合:FlowRouterは、ユーザーがログインしている場合はリダイレクトとパスが、私はFlowRouterで流星を使用してい
- アクセスパスがある場合は、ユーザーが& &をログに記録されている場合http://x.x.x.x/
- その後、http://x.x.x.x/clients
私の現在のルートにリダイレクト:
Accounts.onLogin(function(){
FlowRouter.go('clients');
});
Accounts.onLogout(function(){
FlowRouter.go('home')
});
FlowRouter.triggers.enter([function(context, redirect){
if(!Meteor.userId()){
FlowRouter.go('home')
}
}]);
FlowRouter.route('/', {
name: 'home',
action(){
BlazeLayout.render('HomeLayout');
}
});
FlowRouter.route('/clients',{
name: 'clients',
action(){
BlazeLayout.render('MainLayout', {main: 'Clients'});
}
});