Firebase Firestore 缺少 loadbundle 和namedQuery 方法

问题描述 投票:0回答:1

这是我的代码,但是,firebase函数项目抱怨缺少loadbundle和namedQuery方法。

我的package.json有最新版本。我该如何解决这个问题?

"dependencies": {
    "firebase-admin": "^12.1.0",
    "firebase-functions": "^4.9.0",
    "googleapis": "^115.0.0",
    "lodash": "^4.17.21",
    "node-apple-receipt-verify": "^1.12.1"
  },

enter image description here

firebase google-cloud-firestore google-cloud-functions
1个回答
0
投票

您无法在 Firestore 对象上调用

loadBundle()
namedQuery()
函数,因为 Firestore 类中不存在此类函数。我认为你正在寻找的是 bundle() 其中:

创建一个新的 BundleBuilder 实例以将选定的 Firestore 数据打包到捆绑包中。

需要提及的是,如果您在 React Native 中使用Data Bundles,而不是在使用 Admin SDK 时,这些函数就会存在。

© www.soinside.com 2019 - 2024. All rights reserved.