イオン1からイオン2を開始しようとしており、プロジェクトで認証を設定する方法についてのガイダンスが必要です。特に私はfirebaseとangularfire2を使用しています。イオン2でログインフローを実装する方法は?
一般的なアプローチとして、私は次のいずれかを行う必要があります。
a。 app.tsのsession/localStorageを確認し、認証されていない場合はrootPageをログインに設定しますか?このメソッドを使用すると、ユーザーをログアウトしてnavのルートページをログインに戻すと、タブが下部に表示されます。
b。下に表示されるタブの問題を取り除くモーダルとしてログインページを作成しますが、アプリケーション自体にルートビューがあるかどうかわからないので、私はapp.tsからモーダルを発生させるべきかどうかはわかりません私は参照する必要があります。
また、ログイン・ページとプロファイル・コントローラのログアウト・ボタンではなく、サービスとして認証とログアウトを設定してリファクタリングする必要がありますか?
ここでA法使用して、これまでの私のロジックです:
app.ts
export class MyApp {
rootPage: any;
local: Storage = new Storage(LocalStorage);
constructor(platform: Platform) {
this.local.get('user').then(user => {
if (user) {
this.rootPage = TabsPage;
} else {
this.rootPage = LoginPage;
}
});
platform.ready().then(() => {
StatusBar.styleDefault();
});
}
}
そしてmyProfile.ts
logout() {
this.local.remove('user');
this.user = null;
let modal = Modal.create(LoginPage);
this.nav.present(modal); //should I set the rootPage instead? if so how do I remove the tabBar or set the rootpage of the containing app root page
}
私はこの質問に回答しました。あなたはすでに尋ねました。http://stackoverflow.com/questions/36530765/how-to-set-up-firebase-with-ionic-2-angular-2-and-typescript –