在Meteor JS中,如何在注销后导航到新屏幕?我正在使用accounts-ui包。
在流星文档中,我看到了这一点:http://docs.meteor.com/#meteor_logout
但是,我想我们可以在您自己实施注销时使用它。
谢谢, Sreedhar
答案 0 :(得分:0)
客户端启动期间的某个地方:
Session.setDefault("everLoggedIn", false);
首次登录时的某处:
Session.set("everLoggedIn", true");
在您的headingOut模板的帮助程序中:
HTML
<template name="headingOut">
{{#if show}}<p>where are you going?</p>{{/if}}
</template>
JS
Template.headingOut.show= function() {
return Session.get("everLoggedIn") && Meteor.userId() === null
}