我正在使用表单类在我的项目中构建各种表单。
在 Entity Type 文件中,对于 buildForm 函数,有一个“array $options”的辅助参数(这在官方 Symfony 2 文档中显示,但从未提及过!)
我已经将一个数组输入到控制器中的 createForm 函数中,但现在我完全不知道如何检索存储的值?
$form = $this->createForm(new ProductType(array(), array('id' => '2')), $product);
关于获取选项,我发现的唯一一件事是使用 getOption() 函数,但这在 Symfony 2 中不存在(我发现的帖子来自 2010 年)。
我尝试使用:
$id = $options['id'];
但是当我尝试在任何地方使用 $id 时,我得到了错误:
注意:未定义索引:id
是什么赋予了?
如何从 $options 数组中检索我的值?我什至一开始就正确设置它们吗?
编辑 - 更多代码:
表单类
<?php
namespace DEMO\DemoBundle\Form\Product;
use Doctrine\ORM\EntityRepository;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilder;
class ProductType extends AbstractType
{
public function buildForm(FormBuilder $builder, array $options)
{
$builder
->add('name')
->add('slug')
->add('reference')
->add('description')
->add('active_from')
->add('active_till')
->add('is_active')
->add('category', 'entity', array(
'class' => 'DEMO\DemoBundle\Entity\Product\ProductCategory',
'query_builder' => function(EntityRepository $er) {
return $er->createQueryBuilder('u')
->where('u.section = :id')
->setParameter('id', ***ID VARIABLE NEEDS TO GO HERE***)
->orderBy('u.root', 'ASC')
->addOrderBy('u.lft', 'ASC');
},
'empty_value' => 'Choose an option',
'property' => 'indentedName',
));
}
public function getDefaultOptions()
{
return array(
'data_class' => 'DEMO\DemoBundle\Entity\Product\Product'
);
}
public function getName()
{
return 'demo_demobundle_product_type';
}
}