通过“_id”查询不会使用PyMongo在Python中使用MongoDB返回文件

时间:2012-09-09 13:43:40

标签: python django mongodb pymongo gridfs

我在Openshift中使用Python + MongoDB + PyMongo

import os
import gridfs
from django.http import HttpResponse
from pymongo.connection import Connection
from django.shortcuts import get_object_or_404, render_to_response
from django.http import HttpResponseRedirect, HttpResponse
from django.template import Context, RequestContext,loader

connection = Connection('mongodb://sbose78:XXXXXX@staff.mongohq.com:10068/BOSE')
db=connection['BOSE']
fs=gridfs.GridFS(db)

当我通过_id查询文件时,这就是我得到的。

>>> fs.exists({"_id":'504a36d93324f20944247af2'})
False

当我使用相应的文件名查询时:

>>> fs.exists({"filename":'foo.txt'})

True

可能出现什么问题?

感谢。

2 个答案:

答案 0 :(得分:12)

对于pymongo版本< 2.2,你需要用

导入ObjectId
from pymongo.objectid import ObjectId

对于2.2及更高版本,导入是

from bson.objectid import ObjectId

然后您可以像这样查询gridfs:

fs.exists(ObjectId('504a36d93324f20944247af2'))

答案 1 :(得分:0)

fs.exists({"_id":ObjectId('504a36d93324f20944247af2')})

您需要使用ObjectId