Symfony 1.4 - 更新表单时更新隐藏值

发布于 2024-09-11 01:51:51 字数 196 浏览 1 评论 0原文

我试图在每次更新表单时修改表单字段的默认值。我尝试在 processForm (..) 中编辑 $form->bind 但我不确定如何执行此操作。

是否可以获得一些示例代码或任何方法?

字段名称为“已处理”,我正在尝试将值设置为“假” - 使用 Symfony 1.4 (Propel)

I am trying to modify the default value of a form field every time the form is updated. I have tried to edit the $form->bind in my processForm (..) but I am unsure how to do so.

Is it possible to get some example code or any approaches to do?

The field name is 'processed' and I am trying to set the value to 'false' - Using Symfony 1.4 (Propel)

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

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

发布评论

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

评论(2

青衫儰鉨ミ守葔 2024-09-18 01:51:51

在操作中,您可以直接修改请求中的值,然后将它们绑定到表单:

$parameters = $request->getParameter('nameofyourform');
$parameters['fieldyouwanttochange'] = 'newvalue';
$yourform->bind($parameters);

In the action, you can directly modify the values from the request before binding them to the form:

$parameters = $request->getParameter('nameofyourform');
$parameters['fieldyouwanttochange'] = 'newvalue';
$yourform->bind($parameters);
无畏 2024-09-18 01:51:51

作为替代方案,您可以按照 symfony 团队的建议修改表单的 doSave() 方法。

如果您需要修改保存过程本身,sfFormObject::doSave()通常是最好的地方。

此解决方案的优点是您可以将与表单相关的所有代码放在一个类/文件中。

As an alternative you may modify the doSave() method of your form as suggested by the symfony team.

If you need to modify the saving process itself, sfFormObject::doSave() is usually the best place to do it.

The advantage of this solution is you have all your code related to the form in one class/file.

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