我做了一个登录表单。 我总是让我的控制器这个错误,这是无法提取或这个数据库创建一个实例。 我已阅读所有关于它,为什么会出现这种错误的文档。 我用尽了一切办法来解决这个问题,但它仍然没有工作。 有人可以帮我。 我用我的数据库,用于其他的东西,它可以使一个连接,但是当我要加载登录页面,我得到这个错误。
这是我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;
}
我不知道我在做什么错在这里。 请有人帮助我:)