从 Google App 引擎动态提供图像

发布于 2024-11-01 04:56:35 字数 687 浏览 0 评论 0原文

在从 Google 应用引擎提供存储为 blob 的图像时遇到问题 - 我正在尝试使用以下代码查看存储的图像,

我的数据存储模型是:

class QuestionTemp(db.Model):
     picture = db.BlobProperty()

我从初始表单发出的调用是:

class QuestionAsker3(webapp.RequestHandler):
    def post(self):
      upload_files = self.request.get('file')  # 'file' is file upload
      tempQuestion = QuestionTemp(picture= db.Blob(upload_files))
      tempQuestion.put()
      self.response.headers['Content-Type'] = "image/jpeg"
      self.response.out.write(tempQuestion.picture)

图像 存储在 blobstore 中,我可以在 GAE 管理控制台中查看它 “斑点查看器”。
在 chrome 中,返回屏幕为空白 - firefox 我得到一个 url 和看起来是哈希码的内容。
非常感谢。

having problems serving an image stored as a blob from google app engine - I'm trying to view a stored image with the following code

my datastore model is:

class QuestionTemp(db.Model):
     picture = db.BlobProperty()

my post call from the initial form is:

class QuestionAsker3(webapp.RequestHandler):
    def post(self):
      upload_files = self.request.get('file')  # 'file' is file upload
      tempQuestion = QuestionTemp(picture= db.Blob(upload_files))
      tempQuestion.put()
      self.response.headers['Content-Type'] = "image/jpeg"
      self.response.out.write(tempQuestion.picture)

The image is stored in the blobstore as I can view it in the GAE admin console
"blob viewer".
In chrome the return screen in blank - firefox I get a url and what looks to be a hashcode.
many thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万水千山粽是情ミ 2024-11-08 04:56:35

设法解决问题 - 将数据读入 Blobstore,而不是作为 Blob
所以 Blob 只是存储引用,因此没有图像数据。 .value 的东西对我不起作用。
感谢您帮我弄清楚@abdul和@adam

managed to solve the problem - was reading the data into the Blobstore, rather than as a Blob
so the Blob was just storing a references hence had no image data. The .value thing didn't work for me.
Thanks for helping me figure it out @abdul and @adam

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文