猿问

python firestore - db.collections 参数错误

我正在将 python 与 firestore 客户端一起使用,并尝试使用以下代码在此处运行教程示例:


import firebase_admin

from firebase_admin import credentials, firestore

cred = credentials.Certificate("cred.json")

app = firebase_admin.initialize_app(cred)

db = firestore.client()

ref = db.collections("jobs")

ref = db.collections("jobs") TypeError: collections() 需要 1 个位置参数,但给出了 2 个


我在这里错过了什么?凭证文件是合法的,并且该表是我的 Firestore 中的一个现有表。


并收到此错误:


慕的地8271018
浏览 189回答 1
1回答

qq_笑_17

您正在调用的collections方法返回所有集合,并且不接受任何参数。您正在寻找collection方法(单数,没有s),它采用单个参数(要返回的集合名称)。
随时随地看视频慕课网APP
我要回答