我决定完全改写我的问题。希望我的问题通过这种方式更清楚。
如何在实体中嵌入表示外键字段的表单?例如,属性具有状态表(拥有、可用、待售等)的外键。使用嵌入式表单,我不确定如何让我的嵌入式表单(在这种情况下为状态)了解嵌入它的父实体,以便在提交表单时,创建/更改属性上的状态只会更改外键关系。我可以通过调用 $property->setStatus($status) 来查询属性并更改其状态,所以我相信我的教义关系是正确的。
现在,我在尝试更改表单提交状态时收到此错误:
Catchable Fatal Error: Object of class Test\Bundle\SystemBundle\Entity\Status could not be converted to string in /home/vagrant/projects/test.dev/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 1118
我的表单创建:
$form = $this->createForm(new PropertyType(), $property);
我的 Property 实体中 Property 与 Status 的实体关系:
/**
* @var Status $status
*
* @ORM\ManyToOne(targetEntity="Test\Bundle\SystemBundle\Entity\Status")
* @ORM\JoinColumn(name="StatusId", referencedColumnName="Id", nullable=false)
*/
protected $status;
这是我的 PropertyType 类中嵌入 StatusType 类的行:
->add('status', new StatusType())
这是我的 StatusType 表单类:
class StatusType extends AbstractType
{
public $statusType = null;
public function __construct($statusType)
{
$this->statusType = $statusType;
}
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('name', 'entity', array('label' => 'Status Name',
'class' => 'Test\Bundle\SystemBundle\Entity\Status',
'property' => 'name'));
}
public function getParent()
{
return 'form';
}
public function getDefaultOptions(array $options)
{
return array('data_class' => 'Test\Bundle\SystemBundle\Entity\Status');
}
public function getName()
{
return 'status';
}
}