-1

I'm trying to get value from my alert in Ionic framework application. I made application and when i click the button, alert(prompt) which i can input string appears.
Even i type string in the input box and press 'ok' button , i can't do anything.

I wanna get each input box's string data. What should i do? Base language is typescript.

I'm trying to put WIFI information in input box and want to handle it. For example, if i type "test" and press 'ok', I wanna save it in variable. Help pls. Tnx

async presentAlert() {
    const alert = await this.alertController.create({
      header: 'Input wifi information',
      buttons: [
        {
            text: 'Ok',
            handler: (alertData) => {
              this.data = alertData.ssid+","+alertData.pw+","+alertData.email;
              this.wifiName=alertData.ssid;
              this.wifiPassword=alertData.pw;
              this.email=alertData.email;
          }
        }
    ]

enter image description here

최윤섭
  • 24
  • 5

1 Answers1

0

You can handle the data like this example:

const alert = await this.alertController.create({
    inputs: [
    {
        name: 'name',
        type: 'text'
    }],    
    buttons: [
        {
            text: 'Ok',
            handler: (data) => {
                console.log(data);
            }
        }
    ]
});
await alert.present();

You can check this old version from here.

Louay Sleman
  • 1,794
  • 2
  • 15
  • 39