我已经构建了一个离子应用程序,并在 Angular 中使用模板驱动的表单来收集表单数据并用于ngSubmit
将数据传递到ts.file
. 我想ngSubmit
通过警报中的“否并保存数据”按钮触发功能,但我的警报功能与我的html.file
. 我不知道如何将数据传递给警报功能,要么ngSubmit
通过警报触发。
html.文件
<form #observeForm="ngForm" (ngSubmit)="onSubmit(observeForm.value)" [(observeForm.value)]="tester">
...
<ion-button margin-top="auto" expand="block" type="submit" routerDirection="backforward">Confirm</ion-button>
</form>
ts.文件
async presentAlertConfirm() {
const alert = await this.alertController.create({
header: 'Time Out!',
message: 'Do you want to add more observe time?',
buttons: [
{
text: 'Yes',
cssClass: 'secondary',
handler: () => {
this.startTimer();
console.log('Add time Okay');
}
},
{
text: 'No and save data',
role: 'cancel',
cssClass: 'secondary',
handler: (blah) => {
this.timer = 0;
}
}
]
});
await alert.present();
}