作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我实现了自己的登录系统,因为我使用第三方 Web 服务根据企业身份验证系统对用户进行身份验证。因此,我构建了一个表单,该表单调用服务器方法以对身份验证系统进行 Web 服务调用,如果凭据有效,它会使用用户 ID 设置 session 变量。这就是我如何更改模板以显示应用程序的主屏幕而不是登录屏幕。工作正常。然后注销按钮只是将该 userid session 变量设置为 false,有效地隐藏主应用程序屏幕并再次显示登录表单。
<body>
{{#if loggedInUser}}
{{> navbar}}
{{> mainScreen}}
{{else}}
{{> customLogin}}
{{/if}}
</body>
Template.navbar.helpers({
loggedInUser: function () {
return Session.get('userName');
}
});
'click #logoutButton': function () {
Session.set("userName", false);
}
最佳答案
你能不能不用.stop()
集合上的功能?
var subscription = Meteor.subscribe("info");
//on logout
subscription.stop();
stop() Cancel the subscription. This will typically result in the server directing the client to remove the subscription's data from the client's cache.
var subs = new SubsManager();
// later in some other place
subs.clear();
关于meteor - 您如何安全地注销并清除所有订阅?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29310306/
我是一名优秀的程序员,十分优秀!