'firebase_admin.db' 没有属性 'child'

'firebase_admin.db' has no attribute 'child'

当我尝试在 python 和 firebase 上练习时,我遇到了这个错误。

 'firebase_admin.db' has no attribute 'child'

这是我的进口商品

from firebase_admin import db

以及给出错误的代码。

dates = db.child("notes").get()

我不知道为什么会弹出这个错误。当我阅读 firebase_admin 文档时,它显示有一个 child() 方法。 我在这里错过了什么?

感谢您的帮助。

您的 db 是一个 firebase_admin.db object,它(正如错误所说)没有 child() 方法。要从顶层获取引用,您将使用 reference 方法:

dates = db.reference("notes").get()

要获取对低级节点的引用,您可以在 reference 的结果上使用 child,例如:

db.reference("notes").child("nameofchildnode")

另请参阅 getting started with the Python Admin SDK 上的 Firebase 文档。