我已经登录了表格。 我总是在我的控制器中收到这个错误,它无法获取或创建此数据库的实例。我已阅读有关它的所有文档以及发生此错误的原因。我尝试了一切来解决这个问题,但它仍然无法正常工作。有人可以帮助我。我正在使用我的数据库进行其他操作,它可以建立连接,但是当我想加载登录页面时,我收到了这个错误。
这是我的global.php中的代码
return array(
'db' => array(
'driver' => 'Pdo',
'dsn' => 'mysql:dbname=music;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',
),
),
);
这是我的控制器
public function indexAction()
{
/** @var Mysqli $dbAdapter */
$dbAdapter = $this->serviceLocator->get('db'); // This is where i'm getting the error from
$db = $this->params('fms');
$loginForm = new LoginForm();
if ($this->request->isPost()) {
$loginForm->setData($this->request->getPost());
if ($loginForm->isValid()) {
$auth = new AuthenticationService();
$result = $auth->authenticate(new SqlAdapter(
$loginForm->get('email')->getValue(),
$loginForm->get('password')->getValue(),
$dbAdapter
));
if ($result->getCode() == Result::SUCCESS) {
echo 'success';
return $this->redirect()->toUrl($this->url('')->fromRoute());
} else {
echo 'fail';
}
}
}
$this->view->loginForm = $loginForm;
return $this->view;
}
我不知道我在这里做错了什么。请有人帮帮我:)
答案 0 :(得分:2)
你可能需要的是这个 -
$dbAdapter = $this->serviceLocator->get('Zend\Db\Adapter\Adapter');
如果您需要精确的db
数组,请执行此操作 -
$config = $this->serviceLocator->get('config');
$db_array = $config['db'];
我希望它有所帮助。