在plone中使用python脚本上传文件

发布于 2025-01-08 19:35:52 字数 496 浏览 0 评论 0 原文

我正在使用 plone 来构建我的网站。 在一个页面模板中,我有 和此表单:

addintoDb 是一个 python 脚本,它将我的信息保存到 db:context.addParam(name=request.name, path=request['file']). 在我的数据库中,我有名称和路径: 但我希望将文件上传到何处(如 c:...

)希望有人能帮助我。

I am using plone to build my site.
In one page template, I have the <input type="file" name="file"> and this form: <form method="post" action="addintoDb" enctype="multipart/form-data"

The addintoDb is a python script that save my information into db:context.addParam(name=request.name, path=request['file']).
in my db i have name and in the path: <ZPublisher.HTTPRequest.FileUpload instance at 0x081F98C8> but i want to have the put where the file was uploaded (like c:...)

I hope somebody can help me.

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

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

发布评论

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

评论(1

靑春怀旧 2025-01-15 19:35:52

您没有将文件保存在文件系统上,而是保存在 Zope 对象数据库中。您必须使用 python 代码(而不是 python 脚本)使用 open 内置函数打开文件路径来保存数据。

You are not saving the file on the filesystem, but in the Zope object database. You'd have to use python code (not a python script) to open a filepath with the open built-in function to save the data to.

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