【发布时间】:2019-12-14 04:41:51
【问题描述】:
我很难处理子集合(这是我的第一个 flutter/firebase/nosql 项目)
我想在玩家集合中实现一个“朋友列表”,我需要一个与朋友列表中其他玩家的子集合,这是最好的方法吗?如果是,我如何将子集合添加到文档中?
final CollectionReference playerCollection =
Firestore.instance.collection('player');
Future updatePlayerData(
String nickname,
int gamesWon,
int points,
) async {
return await playerCollection.document(uid).setData({
"nickname": nickname,
"gamesWon": gamesWon,
"points": points,
});
}
【问题讨论】:
标签: firebase flutter google-cloud-firestore