我在buildForm
文件中有这个FormType
方法:
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('content', TextareaType::class, array(
'label' => 'Коментар',
'attr' => array(
'class' => 'form-control input_box'
)
))
->add('submit', ButtonType::class, array(
'label' => 'SEND',
'attr' => array(
'id' => 'saveButton'
)
));
}
然后我在树枝文件中渲染表单:
<div class="post_comment">
<h3>Add comment</h3>
{{ form_start(commentForm) }}
<!--div class="col-md-6">
<h4>Name</h4>
<input type="text" class="form-control input_box" id="fullname" placeholder="">
</div>
<div class="col-md-6">
<h4>Email</h4>
<input type="text" class="form-control input_box" id="email" placeholder="">
</div-->
<div class="col-md-12">
<h4>{{ form_label(commentForm.content) }}</h4>
{{ form_widget(commentForm.content) }}
{{ form_widget(commentForm.submit) }}
</div>
{{ form_end(commentForm) }}
</div>
但是按钮没有带有saveButton
的ID,而是:
<button type="button" id="app_bundle_comment_form_type_submit" name="app_bundle_comment_form_type[submit]">SEND</button>
当我在树枝文件中设置id时,就像这样,效果很好:
{{ form_widget(commentForm.submit, {'id': 'saveButton' }) }}
答案 0 :(得分:2)
按钮的ID将是add()函数的第一个参数(在您的情况下为“提交”)。因此,您的ID上会显示“ app_bundle_comment_form_type_ 提交”。 要删除其余的ID,FormType文件中有一个名为getBlockPrefix()的函数。只需将返回值设置为“”即可。