如何使用 GAE 获取上传文件的文件名?

发布于 2024-12-05 16:51:16 字数 156 浏览 1 评论 0原文

我只是将其上传到数据库(来自用户请求),如下所示:

 x.file = db.Blob(self.request.get("img"))

如何获取文件名,我既有请求又有 blob,任何可以应用于其中任何一个的解决方案对我来说都可以

I just upload it to the db (coming from a user request) like this:

 x.file = db.Blob(self.request.get("img"))

How do I get the filename, I have both the request and the blob, any solution that could be applied for any of them is ok for me

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

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

发布评论

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

评论(2

汐鸠 2024-12-12 16:51:16

self.request.get("img") 返回的对象将有一个名为 filename 的属性。当然,假设“img”是文件上传。

The object that is returned by self.request.get("img") will have a property called filename. Assuming that "img" is a file upload, of course.

反目相谮 2024-12-12 16:51:16

您必须使用 BlobstoreUploadHandler 返回的 BlobInfo
如此处所述
http://code.google.com/appengine/docs/python /tools/webapp/blobstorehandlers.html
它有一个文件名属性,如此处所述
http://code.google.com/appengine/docs/python/blobstore /blobinfoclass.html

you have to use the BlobInfo returned by BlobstoreUploadHandler
as described here
http://code.google.com/appengine/docs/python/tools/webapp/blobstorehandlers.html
it has a filename attribute as described here
http://code.google.com/appengine/docs/python/blobstore/blobinfoclass.html

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