标签: angular firebase firebase-realtime-database rxjs
当使用angular时,通常使用RXjs来实现诺言,我想知道使用firebase时是否正确。如果是这样,为什么(有什么好处)以及我该怎么做?
例如,如何包装firebase push方法,以便该方法将返回observable而不是firebase.database.ThenableReference类型
sendMsg(msg: M.ChatMessage) { return this.db.list(this.firebaseChatPath).push(msg); }