最佳答案
我目前正在尝试 Firestore,而且我陷入了一个非常简单的问题: “更新一个数组(也就是子文档)”。
我的 DB 结构非常简单,例如:
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() }] })
没用,这些查询覆盖了我的数组。
答案可能很简单,但我找不到..。