angular2 比标准的 Firebase 集成有什么好处?

what are the benefits of angular2 over standard firebase integration?

我正在进入 angularionic 混合应用程序开发,我希望使用实时 firebase 后端。

我听说过很多关于 angular fire2 但没有人真正概述为什么你应该或不应该使用它,因为它看起来只是另一回事学。另外,我的主要目标是使用 ionic2 进行混合应用程序开发,当您认为它们可以更兼容时?

谢谢!

大部分是关于 rxjs (Observable)

AngularFire2 synchronizes data as objects using the FirebaseObjectObservable. The FirebaseObjectObservable is not created by itself, but through the AngularFire.database service.

在这里您可以阅读更多关于 observables 和在 angular2 中使用它们的主要概念 Angular 2 Observable Data Services

angular2 with firebase 的主要思想如下:

  • 基于 Observable - 使用 rxjs、Angular 2 和 Firebase 的强大功能。

  • 实时绑定 - 将数据库集合同步为对象或
    列出。

勾选Angular2Fire