web-dev-qa-db-ja.com

TS2570エラーの支援:プロパティ 'sendEmailVerification'はタイプ 'Promise <User>'に存在しません。 「待つ」を使うのを忘れましたか?

Ionic Angularプロジェクトです。リンクされたチュートリアル https://www.positronx.ioを使用しています。/ionic-firebase-authentication-tutorial-with-examples / これを実行します。TS2570エラーが発生し続けます:プロパティ 'sendEmailVerification'がタイプ 'Promise'に存在しません。'await 'を使用するのを忘れていませんか?

コードを添付しました。私が変更した唯一の主要な点は、AngularFireが6.0.0での認証の使用方法を変更したことです

import { Injectable, NgZone } from '@angular/core';
import { auth } from 'firebase/app';
import { User } from "./user";
import { Router } from "@angular/router";
import { AngularFireAuth } from "@angular/fire/auth";
import { AngularFirestore, AngularFirestoreDocument } from '@angular/fire/firestore';

@Injectable({
  providedIn: 'root'
})

export class AuthenticationService {
  userData: any;

  constructor(
    public afStore: AngularFirestore,
    public ngFireAuth: AngularFireAuth,
    public router: Router,
    public ngZone: NgZone
  ) {
    this.ngFireAuth.authState.subscribe(user => {
      if (user) {
        this.userData = user;
        localStorage.setItem('user', JSON.stringify(this.userData));
        JSON.parse(localStorage.getItem('user'));
      } else {
        localStorage.setItem('user', null);
        JSON.parse(localStorage.getItem('user'));
      }
    })
  }

  // Login in with email/password
  SignIn(email, password) {
    return this.ngFireAuth.signInWithEmailAndPassword(email, password)
  }

  // Register user with email/password
  RegisterUser(email, password) {
    return this.ngFireAuth.createUserWithEmailAndPassword(email, password)
  }

  // Email verification when new user register
  SendVerificationMail() {
      return this.ngFireAuth.currentUser.sendEmailVerification()
      .then(() => {
        this.router.navigate(['verify-email']);
      })
    }

  // Recover password
  PasswordRecover(passwordResetEmail) {
    return this.ngFireAuth.sendPasswordResetEmail(passwordResetEmail)
    .then(() => {
      window.alert('Password reset email has been sent, please check your inbox.');
    }).catch((error) => {
      window.alert(error)
    })
  }

  // Returns true when user is looged in
  get isLoggedIn(): boolean {
    const user = JSON.parse(localStorage.getItem('user'));
    return (user !== null && user.emailVerified !== false) ? true : false;
  }

  // Returns true when user's email is verified
  get isEmailVerified(): boolean {
    const user = JSON.parse(localStorage.getItem('user'));
    return (user.emailVerified !== false) ? true : false;
  }

  // Sign in with Gmail
  GoogleAuth() {
    return this.AuthLogin(new auth.GoogleAuthProvider());
  }

  // Auth providers
  AuthLogin(provider) {
    return this.ngFireAuth.signInWithPopup(provider)
    .then((result) => {
       this.ngZone.run(() => {
          this.router.navigate(['dashboard']);
        })
      this.SetUserData(result.user);
    }).catch((error) => {
      window.alert(error)
    })
  }

  // Store user in localStorage
  SetUserData(user) {
    const userRef: AngularFirestoreDocument<any> = this.afStore.doc(`users/${user.uid}`);
    const userData: User = {
      uid: user.uid,
      email: user.email,
      displayName: user.displayName,
      photoURL: user.photoURL,
      emailVerified: user.emailVerified
    }
    return userRef.set(userData, {
      merge: true
    })
  }

  // Sign-out
  SignOut() {
    return this.ngFireAuth.signOut().then(() => {
      localStorage.removeItem('user');
      this.router.navigate(['login']);
    })
  }

}

呼び出されるのはここの登録ページだけです

signUp(email, password){
        this.authService.RegisterUser(email.value, password.value)
        .then((res) => {
          // Do something here
          this.authService.SendVerificationMail()
          this.router.navigate(['verify-email']);
        }).catch((error) => {
          window.alert(error.message)
        })
    }

}

これらは、プロジェクトで使用される依存関係です。

    "@angular/common": "~8.2.14",
    "@angular/core": "~8.2.14",
    "@angular/fire": "^6.0.0",
    "@angular/forms": "~8.2.14",
    "@angular/platform-browser": "~8.2.14",
    "@angular/platform-browser-dynamic": "~8.2.14",
    "@angular/router": "~8.2.14",
    "@capacitor/cli": "^2.0.1",
    "@capacitor/core": "^2.0.1",
    "@capacitor/ios": "^2.0.1",
    "@ionic-native/core": "^5.0.7",
    "@ionic-native/splash-screen": "^5.0.0",
    "@ionic-native/status-bar": "^5.0.0",
    "@ionic/angular": "^5.0.0",
    "core-js": "^2.5.4",
    "firebase": "^7.14.0",
    "rxjs": "~6.5.1",
    "tslib": "^1.9.0",
    "zone.js": "~0.9.1"

誰かがこの問題を修正する方法のヒントを教えてくれますか?非同期を実装して、エラーを表示せずに関数を待機する方法については、100%確信が持てません。

6
daspendy

.thenコンポーネントへのコールバック関数。サービスと同様に、promiseを返します

サービス中

  // Email verification when new user register
  SendVerificationMail() {
      return this.ngFireAuth.currentUser.sendEmailVerification()
  }

そしてコンポーネント内

signUp(email, password){
    this.authService.RegisterUser(email.value, password.value)
    .then((res) => {
        // Do something here
        this.authService.SendVerificationMail()
        .then(() => {
            this.router.navigate(['verify-email']);
        })
    }).catch((error) => {
        window.alert(error.message)
    })
}

更新

すべてをそのままにして、サービスではなくコンポーネントの呼び出し元関数にasync/awaitを追加できます

成分

async signUp(email, password){
  this.authService.RegisterUser(email.value, password.value)
  .then((res) => {
    // Do something here
    await this.authService.SendVerificationMail()
    this.router.navigate(['verify-email']);
  }).catch((error) => {
    window.alert(error.message)
  })
}

サービス

// Email verification when new user register
SendVerificationMail() {
  return this.ngFireAuth.currentUser.sendEmailVerification()
  .then(() => {
    this.router.navigate(['verify-email']);
  })
}
1
Mohammed Yousry

この問題があります。

import { auth } from 'firebase/app';

Firebase/appが削除されているため。これは何を置き換えますか? googleAuth()に問題がありました。以前は、localhostでポップアップを使用してログインできるという問題もありますが、Android電話にデプロイするとエラーが発生します。

 // Sign in with Gmail
  GoogleAuth() {
    return this.AuthLogin(new auth.GoogleAuthProvider());
  }

// Auth providers
AuthLogin(provider) {
return this.ngFireAuth.signInWithPopup(provider)
.then((result) => {
   this.ngZone.run(() => {
      this.router.navigate(['tabs']);
    })
  this.SetUserData(result.user);
}).catch((error) => {
  window.alert(error)
})
}
0
William Jess