Firebase数据库规则indexOn FIREBASE警告:使用未指定的索引

Kaa*_*ken 5 firebase firebase-realtime-database

首先,我得到了这个警告

FIREBASE警告:使用未指定的索引.考虑在/ data/places/tr中添加".indexOn":"id"到您的安全规则以获得更好的性能

我改变了firebase规则.

{
  "rules": {
    ".read": "true",
    ".write": "true",
   "data": {
    "places": {
      "tr": {
        ".indexOn": "id"
      }
    }
   }
  }
}
Run Code Online (Sandbox Code Playgroud)

现在我没有警告,但代码不起作用.