实时数据库 - o​​rderByChild() 适用于 once(),不适用于 get()

Realtime database - orderByChild() works with once(), doesn't work with get()

我有一个具有以下规则的数据库:

{
  "rules": {
    "users": {
      ".read": "auth.uid != null",
      ".indexOn": ["time", "timestamp"],
      "$uid": {
        ".write": "$uid === auth.uid",
      }
    }
  }
}

和格式为

的数据
users
  |_ uid
      |_ time
      |_ timestamp

当我使用 once() 执行查询(使用 Cloud Functions)时,它工作得很好

await admin.database().ref("users").orderByChild("timestamp")
  .once("value", (snapshot) => {
    snapshot.forEach((childSnapshot) => {
      functions.logger.log(childSnapshot.key);
    });
  });

但是当我使用 get()

执行查询时
await admin.database().ref("users").orderByChild("timestamp")
  .get()
  .then((snapshot) => {
    snapshot.forEach((childSnapshot) => {
      functions.logger.log(childSnapshot.key);
    });
  });

我收到以下错误:

Error: No index defined for timestamp at IndexMap.get

请注意,当根本未定义索引时,这不是同一个错误 - 在这种情况下,错误如下所示:

Error: Index not defined, add ".indexOn": "timestamp", for path "/users"

我在定义索引后添加了新条目,所以所有数据都应该被索引(理论上)。当然我可以只使用 once() 但现在我不知道我的数据是否真的被索引了。有人能解释一下吗?

firebaser 在这里

这是 JavaScript SDK 中的一个已知问题,似乎也出现在 Node.js 的 Admin SDK 中。据我所知还没有修复,但是 once() 的解决方法确实有效。如果我知道更多有关此问题的修复方法,我会 post 放在这里。