如何将ServiceManager注入用户定义的类

时间:2013-06-17 09:36:13

标签: zend-framework2 inject service-locator

在文档中说:“默认情况下,Zend Framework MVC注册一个初始化程序,它将ServiceManager实例(Zend \ ServiceManager \ ServiceLocatorInterface的实现)注入到实现Zend \ ServiceManager \ ServiceLocatorAwareInterface的任何类中。” / p>

所以我尝试了这个:

interface ModelResourceInterface extends ServiceLocatorAwareInterface
{
}

interface ServiceModelResourceInterface extends ModelResourceInterface
{
    public function fetch($uri, $method, $parameters, $options, $encodeType);
}


namespace Ssports\Model\Resource\Service\Http;

use Ssports\Model\Resource\Service\ServiceModelResourceInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Http\Client;
use Zend\Http\Request;
use Ssports\Model\Resource\Service\ConnectionException;

abstract class AbstractHttpServiceModelResource implements ServiceModelResourceInterface
{

    /**
     *
     * @var Zend\ServiceManager\ServiceLocatorInterface;
     */
    protected $serviceLocator;

    /**
     * Constructor
     */
    function __construct()
    {
        $this->init();
    }

    /**
     * Extend Constructor
     */
    public function init()
    {}

    /**
     * (non-PHPdoc)
     *
     * @see \Zend\ServiceManager\ServiceLocatorAwareInterface::setServiceLocator()
     *
     */
    public function setServiceLocator(ServiceLocatorInterface $serviceLocator)
    {
        $this->serviceLocator = $serviceLocator;
    }

    /**
     * (non-PHPdoc)
     *
     * @see \Ssports\Model\Resource\Service\ServiceModelResourceInterface::fetch()
     *
     */
    public function fetch($uri, $method, $parameters = null, $options = null, $encodeType = null)
    {
        try {
                //something raise \RuntimeException
        } catch (\RuntimeException $e) {
            $this->getServiceLocator()->get('Log\Web');
            throw new ConnectionException();
        }
    }

    /**
     * (non-PHPdoc)
     *
     * @see \Zend\ServiceManager\ServiceLocatorAwareInterface::getServiceLocator()
     *
     */
    public function getServiceLocator()
    {
        return $this->serviceLocator;
    }
}

我使用一些模型资源类来扩展这个抽象类,然后运行它,并抛出一个异常来表示我正在调用get对象。

似乎没有将服务管理器注入我的抽象类,并且getServiceLocator的返回值为NULL。

我错过任何让它做对的事情?

1 个答案:

答案 0 :(得分:0)

您是否尝试过使用服务定位器特征?

可以在\ Zend \ ServiceManager \ ServiceLocatorAwareTrait

中找到

然而,这需要PHP 5.4才能工作......

要使用特质,请执行以下操作

class Class1
{
  use Zend\ServiceManager\ServiceLocatorAwareTrait;
}

您可以访问服务定位器,或者至少在我需要加载服务定位器时我必须这样做。