NullInjectorError: No provider for AngularFirestore

前端 未结 11 874
北恋
北恋 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 had same issue and below is resolved.

    Old Service Code:

    @Injectable()
    

    Updated working Service Code:

    @Injectable({
      providedIn: 'root'
    })
    

提交回复
热议问题