Firestore中有一个Map。我有另一个名为correctAnswersNew
的Map,我希望将其添加到现有的MapcorrectAnswers
中。类似于以下内容:
await mycollection
.doc("1")
.update('correctAnswers' : correctAnswersNew).then(
(value) => null);
字符串
对于数组,使用FieldValue.arrayUnion
很容易,但是对于map也有选择吗?
1条答案
按热度按时间kq0g1dla1#
是的,您可以像这样向现有的map值添加新值:
字符串