我在AssignmentTypeAdmin中有这个方法:
protected function configureFormFields(FormMapper $formMapper)
{
$formMapper
->add('code', 'text')
->add('label', 'text', array('label'=>'Libellé'))
->add('assignHierarchyNode.label', 'text', array('label' => 'Noeud hiérarchique'))
->add('assignPortfolioType.portfolioTypeLabel', null, array('label' => 'Type de portefeuille'))
->add('assignGeoHierarchyNodeType.label', null, array('label' => 'Type de noeud hiérarchique'));
}
在AssignmentType类中:
/**
* @ORM\ManyToOne(targetEntity="HierarchyManagerBundle\Entity\HierarchyNode")
* @ORM\JoinColumn(name="assign_hierarchy_node_id", referencedColumnName="id", nullable=FALSE)
*/
private $assignHierarchyNode;
在HierarchyNode类中: ...
/**
* @var string
* @Gedmo\TreePathSource
* @ORM\Column(name="label", type="string", length=255)
*/
private $label;
... 还有 get 和 set 方法。
我的问题是我收到此错误,但我不知道为什么:
PropertyAccessor 需要对对象或数组的图形进行操作,但在尝试遍历属性“label”处的路径“assignHierarchyNode.label”时发现类型“NULL”。
为此我使用 Symfony 3.1、Doctrine 2.5.2、Sonata Bundle。 预先感谢您!
看看那里:Sonata PostPersist
在这里你可以找到一个Sonata构造函数,它可能对你有帮助。它比使用 _constructor 更好。您可以在下面找到一个示例。
public function postPersist($client)
{
$em = $this->getConfigurationPool()->getContainer()->get('doctrine.orm.entity_manager');
if ($client instanceof Client )
{
$test = new Test();
$test->setClient($client);
$test->setSurname($client->getSurname());
$test->setFirstname($client->getFirstname());
$em->persist($test);
$em->flush();
}
}
希望它有用。如果您有任何问题,请尽管提问。
对我来说,当我将其初始化为 array 或 ArrayCollection 时,它就起作用了。
public function __construct() {
$this->conditions = [];
}
Symfony 会抛出异常,因为如果未初始化,它就无法对其进行迭代。
对于奏鸣曲
4.x
你可以这样做:
protected function configureFormFields(FormMapper $form): void
{
$form
...
->add('assignGeoHierarchyNodeType', ModelType::class, [
'class' => HierarchyNode::class,
'property' => 'label',
'btn_add' => false,
])
...
}