在 Firestore 中,数组可以嵌套在文档中。但是,重要的是要了解 Firestore 中的数组字段的行为与其他编程语言中的数组不同。
问题陈述:
更新 Firestore 文档中数组字段中的特定元素可能具有挑战性。尝试直接更新数组中的嵌套字段(例如 items[0].meta.description)可能会导致意外结果。
初始方法:
最初,您尝试过使用以下代码更新嵌套字段:
const key = `items.${this.state.index}.meta.description`; const property = `hello bar`; this.design.update({ [key]: property })
但是,此方法从指定索引处的对象。
替代方法:
在后续尝试中,您重写了整个元对象:
const key = `items.${this.state.index}.meta`; const property = e.target.value; let meta = this.state.meta; meta[e.target.id] = property; this.design.update({ [key]: meta })
虽然此方法已成功更新嵌套字段,它将数组转换为object.
解决方案:
Firestore 不提供直接方法来更新数组中的特定项目。相反,您必须从文档中读取整个数组,在内存中对其进行修改,然后更新整个数组字段。
这可以通过以下步骤来实现:
以下是示例代码:
const docRef = firestore.doc(`document/${id}`); let items; // Read the document and retrieve the items array await docRef.get().then((doc) => { if (doc.exists) { items = doc.data().items; } }); // Update the specific element in the array const updatedItem = items.find((item) => item.name === 'Bar'); updatedItem.meta.description = 'hello bar'; // Update the entire array field with the modified array await docRef.update({ items });
以上是如何更新 Firestore 中嵌套数组字段中的单个项目?的详细内容。更多信息请关注PHP中文网其他相关文章!