无法在Windows中使用python从gridfs读取()

时间:2012-03-14 18:52:31

标签: python mongodb gridfs

我使用pylons framefork并将一些图像存储在gridfs中。

此代码适用于MacOS和Linux服务器

f = self._fs.get(ObjectId(image))
# In linux unicode u'image/jpg' raise error, thats why I use str() for content-type
response.headers['Content-type'] = str(f.content_type)
return f.read()

在Windows中,我收到错误“无法读取图像”。是什么原因?

0 个答案:

没有答案