如何在表单编辑中定义textarea内容(Symfony2 / TWIG)

时间:2015-02-24 10:38:29

标签: forms symfony twig textarea

我想在editForm textarea中显示特定内容,所以我尝试使用文本字段,但它不起作用:

{{ form_widget(edit_form.description, { 'attr': {'value': 'content'} }) }} {{ form_errors(edit_form.description) }}

我怎么能在TWIG中做到这一点?

1 个答案:

答案 0 :(得分:5)

这应该符合the doc

{{ form_widget(edit_form.description, { 'value': 'content'}) }} {{ form_errors(edit_form.description) }}

但我从未测试过它。