NullInjectorError: No provider for AngularFirestore

前端 未结 11 881
北恋
北恋 2020-12-02 10:34

I\'m learning Angular looking for help in fixing the error: I\'m following this link : https://github.com/angular/angularfire2/blob/master/docs/install-and-setup.md to creat

11条回答
  •  误落风尘
    2020-12-02 11:14

    I solved this problem by just removing firestore from:

    import { AngularFirestore } from '@angular/fire/firestore/firestore';
    

    in my component.ts file. as use only:

    import { AngularFirestore } from '@angular/fire/firestore';
    

    this can be also your problem.

提交回复
热议问题