gpt4 book ai didi

javascript - 如何在 ionic 应用程序中设置 setCancelable(false)?

转载 作者:行者123 更新时间:2023-11-30 19:23:09 25 4
gpt4 key购买 nike

我想在警告对话框中禁用自动取消但是我不知道,我搜索了一下,我想要像android studio:

builder.setCancelable(false);

工作,请帮帮我。

最佳答案

ionic 3 上将 enableBackdropDismiss 设置为 false

   let alert = this.alertController.create({
title: 'Alert',
subTitle: 'Subtitle',
message: 'This is a test.',
enableBackdropDismiss:false
});

alert.present();

ionic 4 上将 backdropDismiss 设置为 false

 const alert = await this.alertController.create({
header: 'Alert',
backdropDismiss: false,
subHeader: 'Subtitle',
message: 'This is a test.',

});

await alert.present();

关于javascript - 如何在 ionic 应用程序中设置 setCancelable(false)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57230895/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com