web-dev-qa-db-fra.com

Ionic 4 - AlertController: Propriété 'Present' n'existe pas - angulaire?

Je confecte une nouvelle alerte dans Ionic 4 - Type de blanc: Projet angulaire. C'est une alerte de base mais je reçois une erreur survenue en cours d'exécution de mon projet.

Erreur

Propriété 'Present' n'existe pas sur le type "promesse". Avez-vous oublié d'utiliser 'attendre'?

Ma création du même code que dans la documentation. Liens: https://ionicframework.com/docs/api/components/alert/alertController/

Mon code:

import { AuthenticationService } from './../../services/authentication.service';
import { Component, OnInit } from '@angular/core';
import { AlertController, LoadingController, NavController } from 
'@ionic/angular';

@Component({
  selector: 'app-register',
  templateUrl: './register.page.html',
  styleUrls: ['./register.page.scss'],
})
export class RegisterPage implements OnInit {
  createSuccess = false;
  registerCredentials = { email: '', password: '' };

 constructor(
   private nav: NavController,
   private auth: AuthenticationService,
   private alertCtrl: AlertController) { }

 ngOnInit() {
 }

 presentAlert() {
    const alert = this.alertCtrl.create({
    message: 'Low battery',
    subHeader: '10% of battery remaining',
    buttons: ['Dismiss']
   });
   alert.present(); <--- error Property 'present' does not exist on type 'Promise<HTMLIonAlertElement>'. Did you forget to use 'await'?
}
public register() {
this.auth.register(this.registerCredentials).subscribe(success => {
  if (success) {
    this.createSuccess = true;
    this.showPopup('Success', 'Account created.');
  } else {
    this.showPopup('Error', 'Problem creating account.');
  }
},
  error => {
    this.showPopup('Error', error);
  });
}

fonction de ShowPopup que Shoulbe fonctionne ..

showPopup(title, text) {
let alert = this.alertCtrl.create({
  message: title,
  subHeader: text,
  buttons: [
    {
      text: 'OK'
    }
  ]
});
alert.present(); <-- the same error
}
11
Simon

Vous devez utiliser async et await. Voici un échantillon de code:

 async showAlert () {
  const alert = await this.alertCtrl.create({
    header: 'Alert',
    subHeader: 'Subtitle',
    message: 'This is an alert message.',
    buttons: ['okay']
  });
  await alert.present();
};
0
RohitAneja