我将以下代码放在实体类中:
$filesystem = $this->container->get('knp_gaufrette.filesystem_map')->get('amazon');
$filesystem->write($this->file , $this->name, true);
但是,这总是会产生错误:
Notice: Undefined property: MySite\UserBundle\Entity\ProfilePicture::$container in /Users/Mike/Sites/MySite/src/MySite/MainBundle/Entity/Document.php line 98
知道为什么会这样吗?如何从实体访问服务容器?
我把它放在一个抽象类中:
abstract class Document
{
......
}
答案 0 :(得分:0)
实体是数据模型,只应包含数据。
相反,使用依赖注入创建一个侦听器或管理器服务。
答案 1 :(得分:0)
在遗留环境中,我创建了一个doctrine eventlistener,它自动将容器注入实现ContainerAwareInterface的实体中。有了它,我可以用最少的努力与一些“遗留实体”合作。
这就像Symfony ControllerResolver如何在控制器中注入容器而是注入实体。
<?php
namespace Acme\DemoBundle\Doctrine;
use Doctrine\ORM\Event\LifecycleEventArgs;
use JMS\DiExtraBundle\Annotation as DI;
use Symfony\Component\DependencyInjection\ContainerAware;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* adds some nice features to more easy entity utilization
*
* @DI\Service
* @DI\Tag("doctrine.event_listener", attributes = {"event" = "postLoad"})
*/
class ContainerAwareListener extends ContainerAware
{
/**
* @DI\InjectParams({
* "container" = @DI\Inject("service_container"),
* })
*/
public function __construct(ContainerInterface $container = null){
$this->setContainer($container);
}
/**
* After object is loaded, listener inject the container
*
* @param LifecycleEventArgs $args
*/
public function postLoad(LifecycleEventArgs $args)
{
$entity = $args->getEntity();
if($entity instanceof ContainerAwareInterface){
$entity->setContainer($this->container);
}
}
}
实体需要实现容器密码接口,并且可以在setContainer()方法中获取所需的服务,该服务使用JMSDIExtrabundle定义,但可以在services.yml下定义。
许多人认为这是一种不好的做法,因为实体必须尽可能少地依赖所有人。但作为一个极值比率(或在极端期限内:-)),这很好。