0

我将以下代码放入实体类中:

$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
{

......
}
4

2 回答 2

0

Entities are data models and should contain only data.

Instead, create a listener or manager service with dependency injection.

于 2013-04-16T10:03:43.813 回答
0

在遗留环境中,我创建了一个原则事件监听器,它自动将容器注入到实现 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);
        }
    }
}

实体需要实现containeraware接口,需要的服务可以在 setContainer() 方法中获取,服务是用JMSDIExtrabundle定义的,但可以在 services.yml 下定义。

许多人认为这是一种不好的做法,因为实体必须尽可能少地依赖所有人。但作为一个极值比率(或在极端期限下:-)),这很棒。

于 2013-04-16T17:40:09.433 回答