我想按 shopId 订购,但它返回:
"error" : "索引未定义,添加 ".indexOn": "shopId",用于路径 "/Products",到规则中"。
将不胜感激任何帮助谢谢!
规则:
{
"rules": {
".read": "now < 1609966800000", // 2021-1-7
".write": "now < 1609966800000", // 2021-1-7
"Products":{
"Records":{
".indexOn":["shopId"]
}
}
}
}
Pyrebase 代码:
result = db.child("Products").order_by_child("shopId").equal_to(shopId).get()