Symfony Twig错误通知:未定义索引

时间:2018-11-29 08:18:38

标签: php symfony twig symfony4

我尝试在我的Creation实体中创建OneToMany关联。

创作

options = {'packages':['pygame', 'PIL'],

CreationType

class Creation
{
    // ...

    /**
     * @ORM\OneToMany(targetEntity="App\Entity\Categorie", cascade={"persist"}, mappedBy="creation")
     */
    private $categories;

    // ...
}

现在,我想在树枝模板中显示我的类别:

class CreationType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('title')
            ->add('description')
            ->add('categories', EntityType::class,  array(
                'class'         => 'App\Entity\Categorie',
                'choice_label'  => 'label',
                'multiple'      => true,
            ));

    }
}

我有此错误,但是我可以在转储中显示此创建内容:

  

在呈现模板的过程中引发了异常(“注意:未定义索引:创建”)。

有人可以帮忙吗?谢谢

0 个答案:

没有答案