首页  >  文章  >  web前端  >  如何更新 Firestore 中的对象数组而不覆盖整个数组?

如何更新 Firestore 中的对象数组而不覆盖整个数组?

DDD
DDD原创
2024-10-30 21:57:30578浏览

How to Update Arrays of Objects in Firestore Without Overwriting the Entire Array?

使用 Firestore 更新对象数组

在 Firestore 中,更新对象数组可能是一项复杂的任务。在这里,我们解决了这个问题,并提供了一个解决方案来解决合并数据时面临的挑战。

问题

通常,修改 Firestore 中的数组需要替换整个数组。使用 SET 方法会覆盖数组,而 UPDATE 方法执行相同的操作。当尝试更新对象数组中的单个元素时,此行为会造成限制。

解决方案

Firestore 现在提供两种管理数组的方法,而无需覆盖整个数组:

  • arrayUnion():将元素添加到数组,确保仅包含唯一元素。
  • arrayRemove():删除数组中指定元素的所有实例。

要使用这些方法更新对象数组,请按照以下步骤操作:

  1. 引用包含要更新的数组的文档。
  2. 将 update() 方法与 arrayUnion() 或 arrayRemove() 结合使用。
  3. 将对象传递给 arrayUnion() 方法,并将更新的元素作为属性。
  4. 将数组传递给 arrayRemove() 方法,其中包含要删除的元素。

示例代码

<code class="javascript">// Add an element to the "sharedWith" array
firebase.firestore()
  .collection('proprietary')
  .doc(docID)
  .update({
    sharedWith: firebase.firestore.FieldValue.arrayUnion({ who: "[email protected]", when: new Date() })
  });

// Remove an element from the "sharedWith" array
firebase.firestore()
  .collection('proprietary')
  .doc(docID)
  .update({
    sharedWith: firebase.firestore.FieldValue.arrayRemove({ who: "[email protected]", when: timestamp })
  });</code>

通过使用 arrayUnion() 和 arrayRemove( ),您可以无缝更新 Firestore 中的对象数组,确保更改合并到现有数组中而不覆盖它。

以上是如何更新 Firestore 中的对象数组而不覆盖整个数组?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn