gpt4 book ai didi

angular - 没有提供 InjectionToken angularfire2.app.options

转载 作者:太空狗 更新时间:2023-10-29 17:49:08 25 4
gpt4 key购买 nike

<分区>

最近开始学习结合angular使用firebase的概念。首先,我尝试让登录过程正常工作。目前,当我尝试导航到登录页面时遇到一个恼人的错误,我无法弄清楚是什么导致了错误。我得到的错误是:

ERROR Error: Uncaught (in promise): Error: StaticInjectorError(AppModule)[AngularFireAuth -> InjectionToken angularfire2.app.options]: StaticInjectorError(Platform: core)[AngularFireAuth -> InjectionToken angularfire2.app.options]: NullInjectorError: No provider for InjectionToken angularfire2.app.options!

我该怎么做才能解决这个错误?另外,我看到很多代码使用 angularfire2 而不是 @angular/fire。这两个之间有什么区别,我应该实际使用哪个?

这是我目前的代码:

app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { AngularFireModule } from '@angular/fire';
import { AngularFireDatabaseModule } from '@angular/fire/database';
import { environment } from 'environments/environment';
import * as firebase from 'firebase/app';

import { AppComponent } from './app.component';
import { FIREBASE_SERVICES } from './core/firebase/services';
import { AUTHENTICATION_GUARDS } from './features/authentication/guards';
import { AUTHENTICATON_ROUTES } from './features/authentication/authentication.route';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { AngularFireAuthModule } from '@angular/fire/auth';
import { DashboardComponent } from './features/dashboard/dashboard/dashboard.component';
import { LogInComponent } from './features/authentication/login/login.component';
import { DASHBOARD_ROUTES } from './features/dashboard/dashboard.route';

firebase.initializeApp(environment.firebase);

@NgModule({
declarations: [
AppComponent,
DashboardComponent,
LogInComponent
],
imports: [
AngularFireModule,
AngularFireDatabaseModule,
AngularFireAuthModule,
BrowserModule,
RouterModule,
FormsModule,
ReactiveFormsModule,
RouterModule.forRoot(AUTHENTICATON_ROUTES),
RouterModule.forRoot(DASHBOARD_ROUTES)
],
providers: [
FIREBASE_SERVICES,
AUTHENTICATION_GUARDS
],
bootstrap: [AppComponent]
})
export class AppModule {
constructor() {
console.log("App module created");
}
}

login.component.ts

import { Component } from '@angular/core';
import { Credentials } from '@app/core/firebase/models';
import { AuthenticationService } from '@app/core/firebase/services/authentication.service';
import { Router } from '@angular/router';

@Component({
selector: 'app-log-in',
templateUrl: './login.component.html',
styleUrls: ['./login.component.less']
})
export class LogInComponent {
emailaddress: string = '';
password: string = '';

constructor(private readonly _authenticationService: AuthenticationService,
private readonly _router: Router) {
}

login() {
console.log('log in clicked');

const credentials = new Credentials(this.emailaddress, this.password);

this._authenticationService.login(credentials)
.then(
() => this._router.navigate['/dashboard'],
error => {
console.log(error);
alert(error.message);
}
);
}
}

authentication.service.ts

import { Injectable } from '@angular/core';
import { isNullOrUndefined } from 'util';
import { AngularFireAuth } from '@angular/fire/auth';
import * as firebase from 'firebase/app';

import { Credentials } from '@app/core/firebase/models';

@Injectable()
export class AuthenticationService {

constructor(private readonly _angularFireAuthentication: AngularFireAuth) {
console.log("Authentication Service created");
}

login(credentials: Credentials) {
return new Promise((resolve, reject) => {
this._angularFireAuthentication.auth
.signInWithEmailAndPassword(credentials.emailaddress, credentials.password)
.then(
result => resolve(result),
error => reject(error)
);
});
}

logout() {
return new Promise((resolve, reject) => {
if (this.isUserLoggedIn()) {
this._angularFireAuthentication.auth.signOut();
resolve();
}
else {
reject();
}
});
}

private isUserLoggedIn(): boolean {
return !isNullOrUndefined(firebase.auth().currentUser);
}
}

pacakge.json 中的依赖部分

"dependencies": {
"@angular/animations": "~7.1.0",
"@angular/common": "~7.1.0",
"@angular/compiler": "~7.1.0",
"@angular/core": "~7.1.0",
"@angular/forms": "~7.1.0",
"@angular/platform-browser": "~7.1.0",
"@angular/platform-browser-dynamic": "~7.1.0",
"@angular/router": "~7.1.0",
"core-js": "^2.5.4",
"rxjs": "~6.3.3",
"tslib": "^1.9.0",
"zone.js": "~0.8.26",
"firebase": "^5.5.5",
"@angular/fire": "^5.0.2"
},

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