1

我正在尝试通过给定的框架应用程序来学习 Zend Framework 2,但是我以前没有任何 Zend 经验。我确实从其他框架中了解 MVC,例如 yii、symfony。

我的骨架应用程序似乎加载正常,下一步是在应用程序中配置一个 MySQL 数据库连接。所以我尝试了以下问题的答案:

Zend Frameworkd 2 数据库连接

但这对我不起作用,所以我想知道为什么。我的代码是:

config/autoload/文件夹中,我创建了一个名为db.local.php并添加了以下内容的文件:

return array(
  'db' => array(
    'driver'    => 'Mysqli',
    'database'  => 'xxx',
    'username'  => 'sxxx',
    'password'  => 'xxxE',
    'hostname'  => 'localhost'
  ),
  'service_manager' => array(
     'aliases' => array(
      'db' => 'Zend\Db\Adapter\Adapter',
    ),
  ),
);

在 IndexController.php 文件中的默认控制器中/module/Application/src/Application/Controller,我添加了以下内容来测试数据库,但我没有看到任何错误或来自该控制器的任何输出:

public function indexAction()
{
    $this->layout()->myvar = 'bla';

    $db=$this->getServiceLocator()->get('db');
    //var_dump($db); nothing comes here too.

    $statement= $db->query('SELECT * FROM `ew_content` WHERE `con_id` = 1');
    var_dump($statement); // this also empty

    $isconnected = $db->getDriver()->getConnection()->isConnected();
    if($isconnected){
      $message = 'connected';
    } else {
      $message = 'not Valid data field';
    }
    //no output here either

    return new ViewModel(array(
        'customMessageForgotPassword' => 'Error!',
    ));
}
4

1 回答 1

1

感谢akond,实际问题看起来像我在服务管理器配置中创建了db对象的工厂。所以我必须将以下行添加到 db.local.php

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

配置的完整工作代码如下,

return array(
'db' => array(
    'driver'        => 'Mysqli',
    'username'      => 'xxx',
    'password'      => 'xxx',
    'database'      => 'xxxx',
    'host'          => 'localhost'  
),
'service_manager' => array(
    'factories' => array(
            'translator' => 'MvcTranslator',
            'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory',
    ),
    'aliases' => array(
        'db' => 'Zend\Db\Adapter\Adapter',
    ),
),

);
于 2013-09-29T02:20:54.370 回答