我正在构建一个从Symfony2中的两个不同Type类呈现的表单(使用第二个Type的集合类型),并且我无法从控制器中的collection字段访问数据。以下是外部formBuilders方法的代码:
// ...
class EmployeeCreateType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
// ...
->add('positions', 'collection', array(
'type' => new PositionCreateType(),
'label' => ' ',
'allow_add' => false,
'prototype' => false,
));
}
// ...
以下是PositionCreateType的内部buildForm方法的代码:
// ...
class PositionCreateType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('title', 'choice', array(
'label' => 'Title: ',
'choices' => array(
'Senior Engineer',
'Staff',
'Engineer',
'Senior Staff',
'Assistant Engineer',
'Technique Leader',
),
'expanded' => true,
'multiple' => false,
))
->add('department', 'choice', array(
'label' => 'Department: ',
'choices' => array(
'd001' => 'Marketing',
'd002' => 'Finance',
'd003' => 'Human Resources',
'd004' => 'Production',
'd005' => 'Development',
'd006' => 'Quality Management',
'd007' => 'Sales',
'd008' => 'Research',
'd009' => 'Customer Service',
),
'expanded' => true,
'multiple' => false,
));
}
// ...
我想从我的控制器访问部门字段,但我无法弄清楚如何做到这一点。我尝试过像
这样的事情$form->get('positions')->get('department')->getData();
但它不起作用。
答案 0 :(得分:3)
我找到了解决方案。由于集合是ArrayCollection,因此您必须通过提供正确的索引来访问与要访问的对象对应的集合的元素。因为此集合中只有一个项目(单独的表单类型),所以下面的语句可以解决这个问题:
$form->get('positions')->getData()->get('0')->getDepartment();
换句话说,
$form->get('positions')->getData()->get('0')
返回与我的单独表单类型PositionCreateType()。
对应的实体(Position)