我在Firebase Firestore中有一个文档,如下所示。这里的主要要点是我有一个名为items
的数组,其中包含对象:
{
name: 'Foo',
items: [
{
name: 'Bar',
meta: {
image: 'xyz.png',
description: 'hello world'
}
},
{
name: 'Rawr',
meta: {
image: 'abc.png',
description: 'hello tom'
}
}
]
}
我正在尝试更新meta对象下item数组内的字段。例如从hello world到hello bar的items [0] .meta.description
我最初尝试这样做:
const key = `items.${this.state.index}.meta.description`
const property = `hello bar`;
this.design.update({
[key]: property
})
.then(() => {
console.log("done")
})
.catch(function(error) {
message.error(error.message);
});
这似乎没有用,因为它删除了我要修改的项目索引中的所有内容,并将描述保留在元对象下
我现在正在尝试以下操作,该操作基本上用新数据重写了整个元对象
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
})
.then(() => {
this.setState({
[key]: meta
})
})
.catch(function(error) {
message.error(error.message);
});
但是不幸的是,这似乎使我的整个项目数组变成了一个看起来像这样的对象:
{
name: 'Foo',
items: {
0: {
name: 'Bar',
meta: {
image: 'xyz.png',
description: 'hello world'
}
},
1: {
name: 'Rawr',
meta: {
image: 'abc.png',
description: 'hello tom'
}
}
}
}
有什么想法可以更新我想要的内容吗?
答案 0 :(得分:1)
Firestore无法更新索引数组中的现有元素。 documentation中描述了唯一的更新数组选项-您可以向数组添加新元素(“ arrayUnion”)或删除元素(“ arrayRemove”)。
或者,您可以从文档中读取整个数组,在内存中对其进行修改,然后完全更新修改后的数组字段。