1
私のルートページでのみ関数を呼び出す必要があります。これは、すべてのページのイオン2. 上のコールのコードは以下の通りですます:私のルートページでのみ関数を呼び出す必要があります。しかし、これはすべてのページでイオンを呼び出す2
constructor(public platform: Platform,public alertCtrl:AlertController) {
platform.ready().then(() => {
platform.registerBackButtonAction(()=>this.myHandlerFunction())
StatusBar.styleDefault();
Splashscreen.hide();
});
}
myHandlerFunction(){
let alert = this.alertCtrl.create({
title: 'Exit?',
message: 'Do you want to exit the app?',
buttons: [
{
text: 'Cancel',
role: 'cancel',
handler:() => {
}
},
{
text: 'Exit',
handler:() => {
this.platform.exitApp();
}
}
]
});
alert.present();
}
私はmyHandlerFunction()
あなたはapp.component.tsに次のように使用できる唯一の
質問タイトルは「ハードウェアのバックボタンをクリックするとルートページにポップアップが表示される」 –