gpt4 book ai didi

typescript - 如何在 Ionic 中获取 AlertController 的输入值

转载 作者:行者123 更新时间:2023-12-04 02:05:38 24 4
gpt4 key购买 nike

所以我试图从 AlertController 获取输入,但我不确定如何在 Typescript 中做到这一点。

ionViewDidLoad(){
// Presenting popup
this.alert.create({
title:'Enter Details',
inputs:[{
//phNo:'Enter Mob No. E.g.919090998302',
//placeholder: 'pNo',
name:'username',
placeholder: 'username'

},{
name: 'number',
placeholder: 'PNo',

}],

buttons:[{
text: 'Continue',
handler: username =>{
if(typeof username!=null){
this.name = username,
this.phNo = number
}
}
}]
}).present();

我需要在单击按钮后立即获取第二个输入值,但我不确定如何在此操作,在此显示 Cannot find name "number"

最佳答案

所有输入字段都传递给处理程序。如果只有一个字段,您可以立即访问它。但既然有很多领域。处理程序参数将是一个对象

所以试试这个。

 buttons:[{
text: 'Continue',
handler: data =>{
if(typeof username!=null){
this.name = data.username,
this.phNo = data.number
}
}
}]

关于typescript - 如何在 Ionic 中获取 AlertController 的输入值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46403976/

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