emmmmmmmmmmmmm
我写的就特别简单。。。
废话不说了,直接上代码了:
logOut() {
let alert = this.alertCtrl.create({
title: '提示',
subTitle: '你确定要退出账号吗?',
buttons: [
{
text: '取消',
role: 'cancel',
handler: () => {
this.menuCtrl.close();
}
},
{
text: '确定',
handler: () => {
this.menuCtrl.close();
this.storage.clear();
setTimeout(() => {
this.app.getRootNav().push(LoginPage);
}, 500)
}
}
]
});
alert.present();
}
OK,就酱紫。。。