私のエンティティには、配列フィールドがあります:
/**
* @var array
*
* @ORM\Column(name="work_experience", type="array")
*/
private $workExperience;
今、この配列フィールドに渡されるテキスト フィールドのコレクションをレンダリングしたいと考えています。
->add('workExperience', 'collection', array(
'type' => 'text',
'allow_add' => true,
'allow_delete' => true,
'prototype' => true,
#'by_reference' => false,
'options' => array(
'required' => false,
'attr' => array('class' => 'line-box')
),
))
しかし、今このフィールドをレンダリングすると、入力が表示されませんか? 私の間違いは何ですか?
{{ form_row(form.workExperience) }}
ありがとうございました