我正在使用firebase存储玩家的数据。我想只显示所有球员的统计数据 我的结构如下:
players:{
[playerId]:{
info:{
firstName: 'Jon',
lastName: 'Mark',
otherInfo:'aaa'
},
OtherTooMuchInfo:{},
stats:{
totalPlayed: 10,
scoreCountA: 14,
scoreCountB: 24,
}
},
[playerId]:{
info:{
firstName: 'Hen',
lastName: 'Lee',
otherInfo:'qwe'
},
OtherTooMuchInfo:{},
stats:{
totalPlayed: 33,
scoreCountA: 12,
scoreCountB: 43,
}
}
}
如何在不加载所有其他信息的情况下从firebase中仅检索所有玩家中的stats
?