我想在editForm textarea中显示特定内容,所以我尝试使用文本字段,但它不起作用:
{{ form_widget(edit_form.description, { 'attr': {'value': 'content'} }) }} {{ form_errors(edit_form.description) }}
我怎么能在TWIG中做到这一点?
答案 0 :(得分:5)
这应该符合the doc。
{{ form_widget(edit_form.description, { 'value': 'content'}) }} {{ form_errors(edit_form.description) }}
但我从未测试过它。