在 Twig 中自定义小部件的 ID 属性
渲染小部件时是否可以在 Twig 中自定义 HTML 'id' 属性 {{ form_widget(form.NAME_OF_THE_FIELD) }}
?
传递 {'attr': {'id': 'SOMETHING'}}
不起作用...
感谢您的帮助!
Is it possible to customize HTML 'id' attribute in Twig when rendering a widget with{{ form_widget(form.NAME_OF_THE_FIELD) }}
?
Passing {'attr': {'id': 'SOMETHING'}}
doesn't work...
Thanks for help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否尝试过:
{{ form_widget(form.title, { 'id': 'my_custom_id' }) }}
?如果这仍然不起作用,您还可以依靠表单自定义来处理它。但这可能有点矫枉过正,而且可能不是最好的主意。有关详细信息,请查看有关表单主题的文档。
正如我所说,也许有更好的方法,但这只是我现在可以向您建议的方法。
希望这有帮助。
Did you try:
{{ form_widget(form.title, { 'id': 'my_custom_id' }) }}
?If this still doesn't work, you could also rely on form customization to handle it. But this could be overkill and may not be the best idea. Check the documentation on form theming for more info.
As I said, maybe there is better way but this is only what I can propose you for now.
Hope this helps.
http://symfony.com/doc/current/book/forms.html
我已经使用过它并且有效。
http://symfony.com/doc/current/book/forms.html
I have used it and it works.
我不知道它是否对谷歌用户有帮助,但您也可以在 formType 中指定属性的前缀,
您的属性将具有以下 id :
I don't know if it can help for googlers but you also can specify the prefix of the attribut in the formType
your attribute will have the folowing id :