Symfony - Form item as plain text
问题 I have a form that contains a collection of forms (a Vote with many VoteChoice ). The VoteChoiceType is as follows class VoteChoiceType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('answer', null, array('disabled' => true)) ->add('priority', null); } public function configureOptions(OptionsResolver $resolver) { $resolver->setDefaults(array( 'data_class' => 'PollBundle\Entity\VoteChoice', )); } } Now in my Controller I create