0

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

4

0 回答 0