我已经在Google的Firebase控制台服务上创建了一个Firebase数据库,并使用主要TAG从APP INVENTOR成功访问了它。
然后我想使用子索引功能,并修改规则以在两个附加子字段上反映索引:“ ad”和“ tel”。
我无法弄清楚如何使用这两个新标签作为索引来访问数据。
我的印象是,激活索引定义后,将有两个新的标签集可以使用。但是,任何FBGetTags请求始终提供主要记录号标签,而没有其他内容。
有人可以使用这种索引访问FB吗?
THX。
我的数据库JSON布局:
{
"alanlar" : {
"1" : {
"ad" : "\"tg\"",
"hobiler" : "[\"mtnbk hike cook\"]",
"resim" : "\"p1.png\"",
"tel" : "\"111\""
},
"2" : {
"ad" : "\"jg\"",
"hobiler" : "[\"knit walk\"]",
"resim" : "\"p2.png\"",
"tel" : "\"222\""
},
"3" : {
"ad" : "\"eg\"",
"hobiler" : "[\"mil cars test\"]",
"resim" : "\"yok.png\"",
"tel" : "\"777\""
},
},
}
我的数据库规则显示索引定义:
{
"rules": {
".read": true,
".write": true,
"alanlar":{
".indexOn":["ad","tel"]
}
}
}