使用 Firestore 更新陣列
Firestore 提供了一種簡單的方法來更新文件中的陣列,無需覆蓋整個陣列。
以下函數啟用數組更新:
範例程式碼:
// Array union firebase.firestore() .collection('proprietary') .doc(docID) .update({ sharedWith: firebase.firestore.FieldValue.arrayUnion({ who: "[email protected]", when: new Date() }) }) // Array remove firebase.firestore() .collection('proprietary') .doc(docID) .update({ sharedWith: firebase.firestore.FieldValue.arrayRemove({ who: "[email protected]", when: new Date() }) })
這些函數提供了一種簡單有效的管理方法Firestore 中的數組,允許開發者進行有針對性的更新而不影響整個數組。
以上是如何在不覆寫整個陣列的情況下有效更新 Firestore 文件中的陣列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!