Google AppEngine BlobInfo() 功能

发布于 2024-10-15 21:24:11 字数 346 浏览 1 评论 0原文

你好!

GAE 官方文档强调现有的此类有用信息BlobInfo实例属性为:

  • content_type;
  • 创建;
  • 文件名;
  • 我尝试

在我的应用程序中使用它们,但我无法想象如何正确执行此操作,并且我找不到一些实际示例如何利用此 GAE 功能。你能帮我演示一下经过验证的 python 代码吗?

真的谢谢!

Hi!

The official GAE documentation instists on existing such heplful BlobInfo instance properties as:

  • content_type;
  • creation;
  • filename;
  • size

I have try to using them in my app, but I'm can't imagine how to do it correctly and I'm can't find a some practical examples how to utilize this GAE features nowhere. Can you help me by demonstation a scratches of verified python code?

Real thanks!

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

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

发布评论

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

评论(1

尬尬 2024-10-22 21:24:11

假设您的 blob 的密钥位于名为 blob_key 的变量中。您可以编写如下代码:

blob_info = blobstore.BlobInfo.get(blob_key)
print('filename: %s' % blob_info.filename)

blob key 通常由用于上传文件的 BlobstoreUploadHandler 返回。

Assuming that you have the key to your blob in a variable named blob_key. You could write code like this:

blob_info = blobstore.BlobInfo.get(blob_key)
print('filename: %s' % blob_info.filename)

blob key is usually returned by the BlobstoreUploadHandler that you use to upload your file.

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