Maison > interface Web > js tutoriel > le corps du texte

Comment puis-je mettre à jour un champ imbriqué dans un tableau dans Firestore ?

DDD
Libérer: 2024-11-14 19:37:02
original
166 Les gens l'ont consulté

How Can I Update a Nested Field in an Array in Firestore?

Firestore: Updating Nested Array Fields

Problem Statement:

You have a document in Firestore with an array field containing objects. You need to update a specific field within an object inside the array. However, attempting to update directly using the dot notation (items.${index}.meta.description) doesn't work correctly.

Solution:

Firestore does not currently support directly updating a specific element in an indexed array. Instead, consider the following alternatives:

Option 1: Rewrite the Entire Array

Instead of updating the specific field, read the entire array from the document, make the desired modification in memory, then update the modified array field as a whole:

const key = `items.${this.state.index}.meta`;
let items = this.state.items;
items[this.state.index].meta.description = 'hello bar';

this.design.update({
  [key]: items,
})
Copier après la connexion

This approach effectively rewrites the entire array, which may be inefficient if the array is large.

Option 2: Use Array Operations

While Firestore doesn't allow direct updates to existing array elements, you can still add or remove elements using array operations. For example, to append a new element to the array:

this.design.update({
  items: FieldValue.arrayUnion({
    name: 'New Item',
    meta: {
      image: 'def.png',
      description: 'hello new item',
    }
  })
})
Copier après la connexion

To remove an element, use FieldValue.arrayRemove().

Recommendation:

If the array is relatively small, Option 1 (rewriting the entire array) can be a straightforward solution. However, if the array is large, Option 2 (using array operations) is more efficient as it avoids overwriting the entire array.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal