0

我是 GAE 和 Python 新手。

我有一个 GAE/Python 应用程序,用户在其中为应用程序创建大量 html 文件。文件内容以 ndb 类型存储为 blob 类型(连同文件夹和文件名)。我有数百个这样的文件记录。

如何在网页中显示 blob 字段(标签需要 url)?

感谢您的任何建议。

4

1 回答 1

1

那这个呢?

模板:

Photo: <img src="/image?id={{someid}}" />

并且,在视图中(映射为/image):

class GetImage(webapp.RequestHandler):
    def get(self):
        # retrieve the image from the blobstore using self.request.get('id')
        img = ... # omitted
        self.response.headers['Content-Type'] = 'image/png'
        self.response.out.write(img)


urls = [('/image', GetImage),]
application = webapp.WSGIApplication(urls)
if __name__ == "__main__":
    run_wsgi_app(application)
于 2012-08-30T04:26:33.343 回答