请帮我的Zend \\ \\的ServiceManager ::的ServiceManager GE

2019-10-18 23:53发布

我正在追踪这个教程,但遇到错误的Zend \的ServiceManager \的ServiceManager :: GET无法获取或创建的Zend \ DB \适配器\适配器实例

我已经在Google上搜寻,并试图解决一切,但没有运气。 请helppppp我很沮丧:|

FYI:我使用这个骨架https://github.com/zendframework/ZendSkeletonApplication去。 我没有安装zend的。

module.php命名空间相册;

// Add these import statements:
use Album\Model\Album;
use Album\Model\AlbumTable;
use Zend\Db\ResultSet\ResultSet;
use Zend\Db\TableGateway\Tabl`enter code here`eGateway;

class Module
{
 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(
         'factories' => array(
             'Album\Model\AlbumTable' =>  function($sm) {
                 $tableGateway = $sm->get('AlbumTableGateway');
                 $table = new AlbumTable($tableGateway);
                 return $table;
             },
             'AlbumTableGateway' => function ($sm) {
                 $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
                 $resultSetPrototype = new ResultSet();
                 $resultSetPrototype->setArrayObjectPrototype(new Album());
                 return new TableGateway('album', $dbAdapter, null, $resultSetPrototype);
             },
         ),
     );
 }

}

global.php

return array(
 'db' => array(
     'driver'         => 'Pdo',
     'dsn'            => 'mysql:dbname=aaa;host=aaa',
     'driver_options' => array(
         PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\''
     ),
 ),
 'service_manager' => array(
     'factories' => array(
         'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory',
     ),
 ),

);

我读和尝试这些: ZF2 -获取无法获取或创建getAlbumTable实例

在ServiceNotFoundException的ZendFramework 2,例如来自Rob艾伦

最后总是不清晰

Answer 1:

这是因为DB配置错误的,要解决这个,你必须在主配置folder.Code global.php配置DB下面给出,复制粘贴,并只需更改数据库名和密码,

return array(
    'db' => array(
        'driver'         => 'Pdo',
        'dsn'            => 'mysql:dbname=zf2tutorial;host=localhost',
        'driver_options' => array(
            PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\''
        ),
        'username'       => 'root',
        'password'       => ''
    ),
    'service_manager' => array(
        'factories' => array(
            'Zend\Db\Adapter\Adapter'
                    => 'Zend\Db\Adapter\AdapterServiceFactory',
        ),
    ),
);


Answer 2:

这会,如果你的IBM i系列服务器上获取问题的工作。

该问题的原因是,IBMi不能处理在配置相对路径。 我用下面的解决它在我的机器上

'config_glob_paths' => array( '/www/local/zf2/config/autoload/{,*.}{global,local}.php', ),

即设置“config_glob_paths”的完整路径,而不是在application.config.php的相对路径。

注:如果您在本地得到错误,则请检查configruation文件。



Answer 3:

问题是,在你的module.php以下行

$dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');

在global.php数据库配置信息不能被你的程序的认可。 作为一个决心,你可以将你写上global.php到module.config.php配置。

我module.config.php如下:

<?php
return array(
'controllers' => array(
    'invokables' => array(
        'Album\Controller\Album' => 'Album\Controller\AlbumController',
    ),
),

'db' => array(
    'driver'         => 'Pdo',
    'dsn'            => 'mysql:dbname=zend;host=localhost',
    'driver_options' => array(
        PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\''
    ),
),

// The following section is new and should be added to your file
'router' => array(
    'routes' => array(
        'album' => array(
            'type'    => 'segment',
            'options' => array(
                'route'    => '/album[/:action][/:id]',
                'constraints' => array(
                    'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                    'id'     => '[0-9]+',
                ),
                'defaults' => array(
                    'controller' => 'Album\Controller\Album',
                    'action'     => 'index',
                ),
            ),
        ),
    ),
),
'view_manager' => array(
    'template_path_stack' => array(
        'album' => __DIR__ . '/../view',
    ),
),
); 

而我getServiceConfig()Module.php下是如下:

 public function getServiceConfig()
  {
    return array(
        'factories' => array( 

            'db' => function($sm) {
                echo PHP_EOL . "SM db-adapter executed." . PHP_EOL;
                $config = $sm->get('config');
                $config = $config['db'];
                //print_r($config);
                //exit();
                $dbAdapter = new Adapter($config);
                return $dbAdapter;
            },
            'Album\Model\AlbumTable' =>  function($sm) {
                $tableGateway = $sm->get('AlbumTableGateway');
                $table = new AlbumTable($tableGateway);
                return $table;
            },
            'AlbumTableGateway' => function ($sm) {
                $dbAdapter = $sm->get('db');
                //print_r($dbAdapter);
                //exit();             
                $resultSetPrototype = new ResultSet();
                $resultSetPrototype->setArrayObjectPrototype(new Album());
                return new TableGateway('album', $dbAdapter, null, $resultSetPrototype);
            },
        ),
    );
}

之后,一切工作。

注:由于某些原因global.php被Zend2在我的情况不识字(需要有人与我建议进一步研究)local.php还在读。 所以,我仍然保持在local.php我的用户名和密码信息。 希望这将帮助你摆脱这种不舒服的错误。



Answer 4:

我刚添加下面的代码在“MY_PROJECT /配置/自动加载/ global.php”它完美地工作。

'service_manager' => array(
    'factories' => array(
        'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory',
    ),

我使用Oracle和让“local.php”“用户名/密码”。

谢谢!



文章来源: please help me Zend\\ServiceManager\\ServiceManager::get was unable to fetch or create an instance for Zend\\Db\\Adapter\\Adapter