我在我的登录控制器中有这个来监听 $_POST 数据:
<?php
use \Phalcon\Tag;
class SigninController extends BaseController {
public function indexAction()
{
Tag::setTitle('Login');
// if submit
if ($_POST) {
$user = Users::findFirst([
"email = :email: AND password = :password:",
"bind" => [
"email" => $this->request->getPost('email'),
"password" => $this->request->getPost('password')
]
]);
if ($user) {
$this->session->set('id', $user->id);
$this->session->set('role', $user->role);
$this->response->redirect("account");
} else {
$this->flash->error('Wrong credentials!');
$this->response->redirect('signin');
}
}
}
}
但是,当我提交表单时,没有显示带有“错误凭据”的 Flash 消息。页面只是重新加载。
我的 base.volt 模板中有这个:
<body>
{{ flash.output() }}
{% block content %}
{% endblock %}
</body>
它适用于除 if($_POST) 条件之外的所有内容。
我的引导文件中有这个:
$di->set('flash', function() {
$flash = new \Phalcon\Flash\Session([
'error' => 'alert alert-danger',
'success' => 'alert alert-success',
'notice' => 'alert alert-info',
'warning' => 'alert alert-warning',
]);
return $flash;
});
知道为什么闪存消息在我的 if($_POST) 条件下不起作用吗?