gpt4 book ai didi

ios - 如何在 2 级深 child 上使用 queryOrderedByValue?

转载 作者:行者123 更新时间:2023-11-28 15:47:49 25 4
gpt4 key购买 nike

我正在尝试从我的数据库中获取一些游戏统计数据,我有一个像这样的结构:

firebase database structure

我正在努力获得按值排序的所需“百分比” child 。

我的代码是:

func compareTheResult(key: String) {
let refDb = FIRDatabase.database().reference().child("game-stats").child(key).queryOrderedByValue().queryLimited(toLast: 5)

refDb.observeSingleEvent(of: .value, with: { (snapshot) in

print("here the snapshot of compare the result", snapshot)
}, withCancel: nil)}

而且我只知道 key 。我已经尝试使用 queryEqualqueryOrderedByKey 以及其他一些方法,但我无法让它按照我想要的方式工作。

谁能帮我解决这个问题?

最佳答案

这应该会为您提供在关键游戏中按百分比排名最高的 5 位玩家。

let refDb = FIRDatabase.database().reference().child("game-stats").child(key).queryOrdered(byChild: "percent").queryLimited(toLast: 5)

关于ios - 如何在 2 级深 child 上使用 queryOrderedByValue?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42753760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com