Firestore REST API:将对象推送到数组值字段

时间:2018-05-02 22:53:26

标签: firebase firebase-realtime-database google-cloud-firestore

我尝试使用REST API更新我的firestore数据库中的字段,但我无法在不覆盖字段初始数据的情况下找到方法。

以下是我的数据库文档示例中的字段消息

Messages : [
{ senderId: "id-1", text: "Hi Jack"}
{ senderId: "id-2", text: "Hello"}
]

如何在不删除以前数据的情况下将新对象(mapValue):{ senderId: "id-1", text: "How are you"}添加/推送到我的消息字段?

我尝试使用updateMask.fieldPaths = Messages修补REST API,但它覆盖了以前的数据。

由于

0 个答案:

没有答案