6

Firebase データベースから返されるデータの深さを制限することは可能ですか?

たとえば、すべての子とサブ子を待たずに親オブジェクトからデータを取得したい場合、x レベルのオブジェクトのみが必要であると指定できますか?

4

2 に答える 2

2

Firebase にはまだこの機能がありません。

追加する予定ですが、まだタイムテーブルがありません。

于 2013-03-26T05:59:27.403 に答える
2

オプションもあるshallowらしい…

{
  "message": {
    "user": {
      "name": "Chris"
    },
    "body": "Hello!"
  }
}

// A request to /message.json?shallow=true
// would return the following:
{
  "user": true,
  "body": true
}

// A request to /message/body.json?shallow=true
// would simply return:
"Hello!"

から: https://firebase.google.com/docs/database/rest/retrieve-data

于 2017-01-31T23:49:01.087 に答える