gpt4 book ai didi

json - 在 Firebase 中使用带有嵌套键的 .indexOn

转载 作者:行者123 更新时间:2023-12-04 01:18:27 27 4
gpt4 key购买 nike

我有一堆要使用 .indexOn 建立索引的键

假设我的数据如下所示。我希望能够使用 .orderByChild("height") .

{
"lambeosaurus": {
"stats": {
"height" : 2.1,
"length" : 12.5,
"weight": 5000
}
},
"stegosaurus": {
"stats": {
"height" : 4,
"length" : 9,
"weight" : 2500
}
}
}

我指定的索引规则有多伤 height这是 stats 的 child ?我是否必须重组或扁平化我的数据?

最佳答案

您现在可以进行任意深度的查询和索引。

{
"rules": {
"$dinosaur": {
".indexOn": ["stats/height"]
}
}
}

并查询嵌套值:
.orderByChild('stats/height')

关于json - 在 Firebase 中使用带有嵌套键的 .indexOn,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27179094/

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