Questions tagged «angularfire2»

11
NullInjectorError:AngularFirestore没有提供程序
我正在学习Angular,以寻求帮助来修复错误:我正在关注以下链接:https : //github.com/angular/angularfire2/blob/master/docs/install-and-setup.md 创建一个小角度带有angular2和angularfirestore2的应用 但是当我点击服务时,我在浏览器控制台中收到以下错误。 StaticInjectorError[AngularFirestore]: StaticInjectorError[AngularFirestore]: NullInjectorError: No provider for AngularFirestore! at _NullInjector.get (core.js:923) at resolveToken (core.js:1211) at tryResolveToken (core.js:1153) at StaticInjector.get (core.js:1024) at resolveToken (core.js:1211) at tryResolveToken (core.js:1153) at StaticInjector.get (core.js:1024) at resolveNgModuleDep (core.js:10585) at NgModuleRef_.get (core.js:11806) at resolveDep (core.js:12302) 我尝试使用Google搜索,但是没有找到确切的解决方案:(, 这是我遵循的内容:1)安装的节点版本8.9.1 2)npm install -g @ angular / …

5
Firestore获取数据时性能下降的问题
与1/10比率的实时数据库相比,检索存储在文档中的基本数据时,Firestore的性能存在问题。 使用Firestore,首次通话平均需要3000毫秒 this.db.collection(‘testCol’) .doc(‘testDoc’) .valueChanges().forEach((data) => { console.log(data);//3000 ms later }); 使用实时数据库,第一次通话平均需要300毫秒 this.db.database.ref(‘/test’).once(‘value’).then(data => { console.log(data); //300ms later }); 这是网络控制台的屏幕截图: 我正在使用AngularFire2 v5.0 rc.2运行Javascript SDK v4.50。 有没有人遇到这个问题?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.