这是自己封装的一个弹框方法,不过不管调用这个方法还是自己另写一个alert,都是一样的结果
doConfirm(title : string, message : string, buttons : any) : void {
this.alert = this.alertCtrl.create({
title: title,
message: message,
buttons: buttons
});
this.alert.present();
}
doConfirm(title : string, message : string, buttons : any) : void {
this.alert = this.alertCtrl.create({
title: title,
message: message,
buttons: buttons
});
this.alert.present();
}