本文介绍了“AngularFireAuth"类型上不存在属性“auth"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用 angularfire 时出现此错误.检查了我的进口,他们似乎是正确的.我曾尝试重新安装 angularfire,但它仍然抛出此错误.angularfire 有问题吗?
Getting this error when using angularfire. Have checked my imports and they seem to be correct. I have tried to reinstall angularfire however it is still throwing this error. Is there issues with angularfire?
import { Injectable, NgZone } from '@angular/core';
import { User } from "../services/user";
import { auth } from 'firebase/app';
import { AngularFireAuth } from "@angular/fire/auth";
import { AngularFirestore, AngularFirestoreDocument } from '@angular/fire/firestore';
import { Router } from "@angular/router";
@Injectable({
providedIn: 'root'
})
export class AuthService {
userData: any; // Save logged in user data
constructor(
public afs: AngularFirestore, // Inject Firestore service
public afAuth: AngularFireAuth, // Inject Firebase auth service
public router: Router,
public ngZone: NgZone // NgZone service to remove outside scope warning
) {
/* Saving user data in localstorage when
logged in and setting up null when logged out */
this.afAuth.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'));
}
})
}
// Sign in with email/password
SignIn(email, password) {
return this.afAuth.auth.signInWithEmailAndPassword(email, password)
.then((result) => {
this.ngZone.run(() => {
this.router.navigate(['dashboard']);
});
this.SetUserData(result.user);
}).catch((error) => {
window.alert(error.message)
})
}
推荐答案
遇到了同样的问题.似乎开始 "@angular/fire": "^6.0.0"
AngularFireAuth 已删除 auth 属性.
Had the same problem.Seems starting "@angular/fire": "^6.0.0"
AngularFireAuth has dropped the auth property.
只需删除 auth
&它应该工作
Just delete auth
& it should work
https://github.com/angular/angularfire/issues/2409#issuecomment-615993136
这篇关于“AngularFireAuth"类型上不存在属性“auth"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!