なぜイオンプラットフォームは準備関数を呼び出すのに非常に時間がかかりますか?あなたが開発モードでアプリを実行している場合、それはある程度の時間を要するなぜIonic Ionic2プラットフォームの準備に時間がかかりますか?
this.platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
alert(1);
if(this.splashScreen) {
alert(2);
setTimeout(() => {
alert(3);
this.splashScreen.hide();
}, 1000);
}
});
がコマンドにすぎ--releaseを追加することができますangular.io
・ホープから
チェックこのドキュメント、CLIコマンドを使用して、それを実行することができます –