Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想更改树枝模板中的文本框输入大小,但我无法做到。
我正在尝试这个:
{{ form_widget(form.age, { 'size': '5' }) }}
它不工作,但这是工作:
{{ form_widget(form.age, { 'id': 'myid' }) }}
根据文档,您应该尝试使用attr属性
attr
{{ form_widget(form.age, { 'attr': {'size': '5'} }) }}
尝试删除“5”周围的引号。