我使用流星和流星與反應套餐: accounts-ui accounts-password
流星反應註銷事件
我想執行一個功能的客戶端,也許服務器端,只要當前用戶被註銷或離開頁面。
我該怎麼做?
編輯:我添加了用於登錄的代碼。這只是登錄系統上的反應 - 流星tutoral 代碼。我需要一個註銷事件的事件處理程序。
export default class AccountsUIWrapper extends Component {
componentDidMount() {
// Use Meteor Blaze to render login buttons
this.view = Blaze.render(Template.loginButtons,
ReactDOM.findDOMNode(this.refs.container));
}
componentWillUnmount() {
// Clean up Blaze view
Blaze.remove(this.view);
}
render() {
// Just render a placeholder container that will be filled in
return <span ref="container" />;
}
}
[Meteor.logout](http://docs.meteor.com/#/full/ meteor_logout) –