我在这里使用官方文档尝试将firebase添加到我的角度应用程序中,但我不断收到以下类型错误:
ype '{ ngModule: typeof AngularFireModule; providers: { provide: InjectionToken<string | FirebaseAppConfig>; useValue: string | FirebaseAppConfig; }[]; }' is not assignable to type 'any[] | Type<any>'.
Type '{ ngModule: typeof AngularFireModule; providers: { provide: InjectionToken<string | FirebaseAppConfig>; useValue: string | FirebaseAppConfig; }[]; }' is missing the following properties from type 'Type<any>': apply, call, bind, prototype, and 5 more.ts(2322)
这是一个专门为测试firebase而构建的新项目,在这里,在github和firebase slack上待了一段时间后,我似乎无法弄清楚我做错了什么基本的事情。
我的进口:
import { AngularFireModule } from '@angular/fire';
import { AngularFirestoreModule } from '@angular/fire/firestore';
import { AngularFireAuthModule } from '@angular/fire/auth';
在 app.module 的导入数组中:
AngularFireModule.initializeApp(config), // <== this one throws the error
AngularFirestoreModule, // firestore
AngularFireAuthModule, // auth
我使用了命令:
yarn add firebase @angular/fire
按照文档和 package.json 中的方式安装,我有:
"firebase": "^6.2.2",
"@angular/fire": "^5.2.1",
在这些版本中使用 Angular 8:
"@angular/animations": "~8.0.2",
"@angular/common": "~8.0.2",
"@angular/compiler": "~8.0.2",
"@angular/core": "~8.0.2",