我在 python 中遇到 gridfs 问题。我上传了我的 json 文件,但现在想查询文件中的数据。如何做到这一点。这是我的代码示例from pymongo import MongoClient import gridfsclient = <connection_string>db = client.testdbfs = gridfs.GridFS(db)result = db.fs.files.find({})print(list(result))print(result)此代码返回一个游标对象并将该对象转换为一个列表,只为我提供文件对象字段,如 _id、md5、chunkSize 等....这是一个示例 JSON 文件{'name': 'andrew', 'age': 90 'fav_foods': ['pizza', 'cheeseburger']}使用 gridfs 我将如何查询 fav_foods 字段?
1 回答
幕布斯6054654
TA贡献1876条经验 获得超7个赞
这是不支持的。GridFS 处理(存储和检索)二进制数据,MongoDB 中没有规定查询存储在 GridFS 中的文件的内容。如果您希望使用 MQL,您需要将数据作为文档插入。
添加回答
举报
0/150
提交
取消