更新 Firestore 中的对象数组
更新 Firestore 中的对象数组可能是一个简单的过程,但它需要使用Firestore SDK 中的特定方法。
要将新记录追加到对象数组中,可以使用 arrayUnion() 方法。此方法采用一个元素数组作为其参数,并将这些元素添加到现有数组中,但前提是它们尚不存在。
以下代码演示了如何使用 arrayUnion( ):
firebase.firestore() .collection('proprietary') .doc(docID) .update({ sharedWith: firebase.firestore.FieldValue.arrayUnion({ who: "[email protected]", when: new Date() }) })
arrayRemove() 方法可以是用于从数组中删除元素。它接受一个元素数组作为参数,并删除每个给定元素的所有实例。
要从sharedWith数组中删除特定元素,可以使用以下代码:
firebase.firestore() .collection('proprietary') .doc(docID) .update({ sharedWith: firebase.firestore.FieldValue.arrayRemove({ who: "[email protected]" }) })
这些方法提供了一种方便高效的方法来更新 Firestore 中的数组,确保仅添加或删除指定的元素,使数组的其余部分保持不变。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3