我有一个离子3应用程序,并希望执行代码以便在启动应用程序时显示启动画面并且尚未呈现应用程序页面时获取用户数据。
我目前在应用程序触发appReady事件时执行此操作,但我很感兴趣,如果我可以在启动画面期间赢得另外2秒的女巫。
export class AppModule {
constructor(private platform: Platform,
private storage: Storage) {
this.platform.ready().then(() => {
this.storage.get('id_token').then((token) => {
this.initUserData(token);
});
});
}
}