在生成没有--non-verbose-templates
选项的模块时,Symfony有任何缺点吗?
我只能看到,每当您更改模型时,您还必须手动更改_form
部分。
由于
答案 0 :(得分:1)
区别在于verbose-templates扩展了表单。例如,在非详细模板中,输出为:
//..
<?php echo $form ?>
//..
并在详细模板:
中//...
<tr>
<td><?php echo $form['field_1']->renderLabel() ?></td>
<td><?php echo $form['field_1']->renderError() ?></td>
//etc..
</tr>
//etc.
//...