我使用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中,我收到错误“无法读取图像”。是什么原因?