如何在啓動應用程序時檢查用戶是否已登錄。如果登錄,請將用戶引導至主頁,否則將用戶引導至LoginPage。Ionic 2.檢查在應用程序啓動期間是否登錄
我想在成功登錄存儲後存儲布爾值。當我啓動應用程序時,我想查看存儲是否包含某些內容?
this.storage.get('name').then((name) => {
console.log('Your name is', name);
this.sessa = name;
console.log('Your name is', this.sessa);
});
if(this.sessa == null){
this.rootPage = LoginPage;
}
else if (this.sessa != null) {
this.rootPage = HomePage;
}
換句話說。如何在成功登錄後將登錄頁面的值傳遞給app.component.ts。謝謝
根據你的問題,無論你是否重定向到首頁都無所謂。你的意思是,如果沒有登錄,那麼重定向到LoginPage? –
@sagar Kulkami。是 –