有没有办法在symfony2中为关联字段接收Doctrine生命周期事件? http://docs.doctrine-project.org/projects/doctrine-orm/en/2.0.x/reference/events.html#lifecycle-events
例如:
Entity\User.php
..
/**
* @ORM\ManyToMany(targetEntity="Group", inversedBy="users", cascade={"persist"})
* @ORM\JoinTable(name="users_groups",
* joinColumns={@ORM\JoinColumn(name="user_id", referencedColumnName="id", onDelete="CASCADE")},
* inverseJoinColumns={@ORM\JoinColumn(name="group_id", referencedColumnName="id", onDelete="CASCADE")}
* )
*/
protected $groups;
所以当我为User Entity创建一个事件监听器时 http://symfony.com/doc/current/cookbook/doctrine/event_listeners_subscribers.html
当Entity \ Group添加到Entity \ User时,将调用Listener。
注意:我能找到获得此功能的唯一方法是创建一个Entity \ UserGroup并监控postPersist而不是Users PostPersist。
这是监听实体关联的唯一方法吗?
更新回复! 协会的所有者在更新关联字段期间会被调用,但不在事件参数的getEntityChangeSet中。您必须从实体管理器中的工作单元获取getScheduledCollectionUpdates。例如:
EventListener\PostEventListener
..
public function postUpdate(LifecycleEventArgs $args)
{
$this->handlePostEvents($args);
}
public function postPersist(LifecycleEventArgs $args)
{
$this->handlePostEvents($args);
}
public function handlePostEvents(LifecycleEventArgs $args){
$entity = $args->getEntity();
$em = $args->getEntityManager();
if ($entity instanceof User) {
$uow = $em->getUnitOfWork();
foreach ($uow->getScheduledCollectionUpdates() AS $col) {
if ($col->first() instanceof Group) {
// ADD CODE HERE
}
}
}
}