添加到特定文档的地图字段(Flutter Firestore)

时间:2020-04-24 16:43:24

标签: firebase flutter dart google-cloud-firestore

我正在使用flutter Firestore,只想将用户(使用userInfo映射)添加到我的PrayerRooms集合中的特定文档中(而不添加任何其他字段)。我不确定如何执行此操作,并且是否可能The database I want to add into

1 个答案:

答案 0 :(得分:2)

如果您还有其他字段,而只想在保留其他字段的同时向userInfo映射添加数据,则可以使用updateData()

 Firestore.instance.collection("PrayersRoom").document(userId).updateData({
                     "userInfo.userId" : userId,
                     "userInfo.userCount" : 2
                   });