我目前正在尝试 Firestore,但我遇到了一些非常简单的问题:“更新数组(又名子文档)”。
我的数据库结构超级简单。例如:
proprietary: "John Doe",
sharedWith:
[
{who: "first@test.com", when:timestamp},
{who: "another@test.com", when:timestamp},
],
我正在尝试(但没有成功)将新记录推送到shareWith
对象数组中。
我试过了:
// With SET
firebase.firestore()
.collection('proprietary')
.doc(docID)
.set(
{ sharedWith: [{ who: "third@test.com", when: new Date() }] },
{ merge: true }
)
// With UPDATE
firebase.firestore()
.collection('proprietary')
.doc(docID)
.update({ sharedWith: [{ who: "third@test.com", when: new Date() }] })
没有工作。这些查询会覆盖我的数组。
答案可能很简单,但我找不到...