symfony 迭代访问表单值
我想从模板访问表单的值。糟糕的 symfony 文档和谷歌没有帮助。假设我不知道字段的名称。我不想执行 $form->getObject()->getFieldName()
解决方案:好的。我明白了。 $form->getValues()
对我来说做得非常好。
I want to access values of a form from a template. Poor symfony documentation and google are not helping. Assume I don't know the names of the fields. I don't want to do a $form->getObject()->getFieldName()
SOLUTION: Ok. I got this. $form->getValues()
does a pretty good job for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。我明白了。 $form->getValues() 对我来说做得很好。
Ok. I got this. $form->getValues() does a pretty good job for me.