我有一个表格,用于将值放在两个不同的实体中。一个实体是listing
表,另一个是images
表。图像表由侦听 dropzone 的侦听器处理PostPersistEvent
。每次将图像拖放到区域中时,都会将其添加到数据库中。有一段时间我有一个问题,如果用户只是第一次创建表单,列表不存在,所以没有id
绑定image
我解决的实体。
现在我正在尝试,每次拖放图像时,获取listing
用户正在查看表单的当前实体的 id 并将其用作listing_id
图像实体中的值。
上传监听器
<?php
namespace DirectoryPlatform\AppBundle\EventListener;
use Doctrine\Common\Persistence\ObjectManager;
use Oneup\UploaderBundle\Event\PostPersistEvent;
use DirectoryPlatform\AppBundle\Entity\MotorsAdsFile;
use Symfony\Bundle\FrameworkBundle\Routing\Router;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use FOS\UserBundle\Event\FilterUserResponseEvent;
use FOS\UserBundle\FOSUserEvents;
class UploadListener
{
protected $manager;
public function __construct(ObjectManager $manager)
{
$this->manager = $manager;
}
// If I could pass a current instance of the currently viewed Listing entity here, that would be ideal
public function onUpload(PostPersistEvent $event)
{
$file = $event->getFile();
// images entity
$object = new MotorsAdsFile();
$object->setImageName($file->getPathName());
// I'd want to set the listing_id of MotorsAdsFile to the id of the currently viewed listing here
// $object->setListing($listing->getId());
$this->manager->persist($object);
$this->manager->flush();
}
}
MotorsAdsFile(图像实体)
/**
* @param Listing $listing
*/
public function setListing($listing)
{
$this->listing = $listing;
}
服务.yml
directory_platform.upload_listener:
class: DirectoryPlatform\AppBundle\EventListener\UploadListener
arguments: ["@doctrine.orm.entity_manager"]
tags:
- { name: kernel.event_listener, event: oneup_uploader.post_persist, method: onUpload }
我的意图是在将图像上传到数据库时将列表 ID 添加到图像中。listing_id
实体中的image
绑定到id
列表实体的,但我没有办法从侦听器中获取表单的当前实例
我的问题是,如何获取listing
用户当前正在查看的实体实例,UploadListener
以便我可以使用它id
并将其设置为listing_id
上传图像的实例。