ZF2 User \ Module.php无法调用$ sm-> get('Zend \ Db \ Adapter \ Adapter')

时间:2013-03-01 10:28:34

标签: zend-framework2

我正在学习ZF2,开始编写一个简单的UserAuth插件进行身份验证,但是有例外: 创建“userAuth”时引发了异常;没有实例返回 以前的例外: 提供的或实例化的驱动程序对象不实现Zend \ Db \ Adapter \ Driver \ DriverInterface

此行错误:$ sm-> get('Zend \ Db \ Adapter \ Adapter')

以下是我的User \ Module.php

class Module {

public function onBootstrap(MvcEvent $e)
{
    $e->getApplication()->getServiceManager()->get('translator');
    $eventManager        = $e->getApplication()->getEventManager();
    $moduleRouteListener = new ModuleRouteListener();
    $moduleRouteListener->attach($eventManager);
}

public function getAutoloaderConfig()
{
    return array(
        'Zend\Loader\ClassMapAutoloader' => array(
            __DIR__ . '/autoload_classmap.php',
        ),
        'Zend\Loader\StandardAutoloader' => array(
            'namespaces' => array(
                __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
            ),
        ),
    );
}

public function getConfig()
{
    return include __DIR__ . '/config/module.config.php';
}

public function getServiceConfig()
{
    return array(
        'invokables' => array(
        ),
        'factories' => array(
            'User\Form\Signin' => function($sm) {
                $form = new Form\Signin();
                $form->setInputFilter(new Form\SigninFilter);
                return $form;
            },
            'User\Auth\Service' => function ($sm) {
                return new \Zend\Authentication\AuthenticationService(
                    new \Zend\Authentication\Storage\Session(),
                    new \Zend\Authentication\Adapter\DbTable($sm->get('Zend\Db\Adapter\Adapter'))
                );
            },
        ),
    );
}

public function getControllerPluginConfig()
{
    return array(
        'factories' => array(
            'UserAuth' => function ($sm) {
                $sl = $sm->getServiceLocator();
                $authService = $sl->get('User\Auth\Service');
                $authAdapter = new \Zend\Authentication\Adapter\DbTable($sm->get('Zend\Db\Adapter\Adapter'));
                $controllerPlugin = new Controller\Plugin\UserAuth();
                $controllerPlugin->setAuthService($authService);
                $controllerPlugin->setAuthAdapter($authAdapter);
                return $controllerPlugin;
            },
        ),
    );
}

}

请帮我解决。

1 个答案:

答案 0 :(得分:0)

添加:

use Zend\Db\Adapter\Adapter;

到Controller \ Plugin \ UserAuth.php

的顶部

extends Adapter

后:

class UserAuth

在同一个文件中。这至少会让你朝着正确的方向前进。