标签: authentication caching ionic2
用户注销时如何自动清除缓存?
这是我在auth-data.ts的注销
logoutUser() { return this.fireAuth.signOut(); }
在home.ts注销
logoutUser(){ this.authData.logoutUser().then(() => { this.navCtrl.setRoot(LoginPage); }); }