在 Twig 中自定义小部件的 ID 属性

发布于 2024-12-17 09:01:34 字数 176 浏览 2 评论 0原文

渲染小部件时是否可以在 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 技术交流群。

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

发布评论

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

评论(3

烟花易冷人易散 2024-12-24 09:01:34

您是否尝试过:{{ 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.

无名指的心愿 2024-12-24 09:01:34
{{ form_widget(form.title, { 'attr': {'id': 'my_id'} }) }}

http://symfony.com/doc/current/book/forms.html

我已经使用过它并且有效。

{{ form_widget(form.title, { 'attr': {'id': 'my_id'} }) }}

http://symfony.com/doc/current/book/forms.html

I have used it and it works.

一花一树开 2024-12-24 09:01:34

我不知道它是否对谷歌用户有帮助,但您也可以在 formType 中指定属性的前缀,

public function getName()
{
   return 'vendor_testbundle_sickness';
}

您的属性将具有以下 id :

vendor_testbundle_sickness_SOMETHING

I don't know if it can help for googlers but you also can specify the prefix of the attribut in the formType

public function getName()
{
   return 'vendor_testbundle_sickness';
}

your attribute will have the folowing id :

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