Symfony 4 Form Collection与原型

时间:2018-06-12 10:23:16

标签: php html symfony twig symfony4

我是Symfony 4的新手,我尝试使用带有数字选项的ChoiceType字段渲染表单,以生成用户选择的确切标记数。

这是我的控制者:

class ContactController extends AbstractController
{
    /**
     * @Route("/matrix", name="matrix")
     */
    public function index(Request $request)
    {
        $contact = new Contact();
// i've already added some tags
        $tag3 = new Tag();
        $tag3->setName('tag3');
        $contact->getTags()->add($tag3);

        $tag4=new Tag();
        $tag4->setName('ciao');
        $contact->getTags()->add($tag4);

        $form = $this->createForm(ContactType::class, $contact);
        $form->handleRequest($request);


        if ($form->isSubmitted() && $form->isValid()) {

            $contactFormData = $form->getData();
            dump($contactFormData);
        }

        return $this->render('contact/index.html.twig', array(
            //'our_form' => $form,
        'form' => $form->createView(),
        ));
    }

在我的代码的这一点上,表单似乎已填满,我已经检查了一些转储。

这是我的树枝

{% block body %}
    <div>
        {{ form_start(form) }}
        {{ form_widget(form) }}
        <ul class="tags" data-prototype="{{ form_widget(form.tags.vars.prototype)|e('html_attr') }}">
            {% for tag in form.tags %}
                <li> {{ form_row(tag.name) }}
                </li>
            {% endfor %}
        </ul>
    <input type="submit" value="Send" class="btn btn-success" />
    {{ form_end(form) }}
</div>

{% endblock %}

似乎这两个文件之间没有可见性,事实上,他无法进入for循环。我已经抛弃了一些东西,而且我已经看到标签在这一点上没有孩子,但它应该。

class ContactType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('motto')
            ->add('expectations', ChoiceType::class, array(
                'choices'  => array(
                    '1' => '1',
                    '2' => '2',
                    '3' => '3',
                    '4' => '4',
                    '5' => '5',


                ),
            ));

$builder->add('tags', CollectionType::class, array(
    'entry_type' => TagType::class,
    'entry_options' => array('label' => false),
    'allow_add' => true,
    'by_reference' => false,
    'mapped' => false,

));

    }

    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults([
            // Configure your form options here
        ]);
    }
}

1 个答案:

答案 0 :(得分:0)

我对此代码感到困惑=> $contact->getTags()->add($tag3);。看来Tags是一个实体,而Contact是另一个实体,因此您的Contact实体应该具有adders / removers和/或setters / { {1}}(无需同时累积两者)。

因此您的实体应该喜欢:

removers

实现案例的一个很好的例子:How to Embed a Collection of Forms

然后,我不知道您的TagType表单是什么样子,但是即使它发展得很好,您的树枝也不行。

首先class Contact { // ... /** @var Collection */ protected $tag; // ... public function __construct() { $this->tags = new ArrayCollection(); } // ... public function addTag(Tag $tag) { $this->tags->add($tag); } public function removeTag(Tag $tag) { // ... } } 渲染整个表单

来自Symfony文档

  

呈现给定字段的HTML小部件。如果将此方法应用于整个表单或字段集合,则将呈现每个基础表单行。

因此重新渲染集合将无效。即使您的树枝代码不是很好的呈现集合的代码。