我正在使用flutter
Firestore,只想将用户(使用userInfo映射)添加到我的PrayerRooms集合中的特定文档中(而不添加任何其他字段)。我不确定如何执行此操作,并且是否可能The database I want to add into
答案 0 :(得分:2)
如果您还有其他字段,而只想在保留其他字段的同时向userInfo
映射添加数据,则可以使用updateData()
:
Firestore.instance.collection("PrayersRoom").document(userId).updateData({
"userInfo.userId" : userId,
"userInfo.userCount" : 2
});