使用后端表单上传文件而不使用 Symfony 更新数据库?

发布于 2024-11-19 17:49:44 字数 244 浏览 0 评论 0 原文

我在表单中编写了一个函数,要求用户上传文件,但不必将其文件名保存到我的数据库中,因为程序可以自动检测文件。

我尝试使用这段代码:

$this->setWidget('filename', new sfWidgetFormInputFile());

但这需要在数据库中有一列用于保存文件。

无论如何,有没有办法不使用数据库,但在 symfony 1.4 中包含上传表单?

I writing a function in my form that require user to upload a file, but doesn't necessary have to save it filename in to my database as the program can automatic detect the file.

I try to use this piece of code:

$this->setWidget('filename', new sfWidgetFormInputFile());

But this required to have a column in database for saving file.

Is there anyway to not use database but include a upload form in symfony 1.4?

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

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

发布评论

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

评论(2

腹黑女流氓 2024-11-26 17:49:44

您是否尝试重写 updateFilenameColumn 方法以便不返回任何内容?

did you tried to override your updateFilenameColumn method in order to return nothing?

清引 2024-11-26 17:49:44

您不需要数据库中的列,但需要一个验证器来完成您的表单,例如 sfValidatorFile。

You don't need a column in your database, but you need a validator in order to complete your form, sfValidatorFile for exemple.

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