模板化嵌入表单
在 Symfony 中呈现表单有多种选择。 一种方法是:
<?php foreach($form as $input): ?>
// do rengerLabel, render, etc.
<?php endforeach ?>
这很好,因为我的表单以相同的方式呈现所有错误和输入,但它也呈现嵌入的表单。我想知道是否有一种方法可以避免逐个渲染字段并最终将 $form[embedded]
中的 foreach 作为 $input
运行。
You have many choices to render a form in Symfony.
One way would be:
<?php foreach($form as $input): ?>
// do rengerLabel, render, etc.
<?php endforeach ?>
That's great because my form renders all the errors and inputs by the same, but it also renders the embedded form. I was wondering if there is a way to avoid rendering the fields one by one and finally run the foreach in $form[embedded]
as $input
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你为什么不尝试这样的事情:
Why don't you try something like: