Google AppEngine BlobInfo() 功能
你好!
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的 blob 的密钥位于名为 blob_key 的变量中。您可以编写如下代码:
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 key is usually returned by the BlobstoreUploadHandler that you use to upload your file.