在CodeIgniter中设置常规表单验证错误

时间:2012-07-30 23:32:03

标签: php validation authentication codeigniter

假设我在CodeIgniter中有一个登录表单 - 我可以为各个输入设置验证规则,但有没有办法抛出模型/控制器级错误和消息?

具体来说,如果以下方法没有返回TRUE,我希望我的表单重新显示消息“电子邮件地址或密码不正确”。目前,控制器只是重新加载视图和set_value()s

public function authorize_user()
{
    $this->db->where('email', $this->input->post('email'));
    $this->db->where('password', $this->input->post('password'));

    $q = $this->db->get('users');

    if($q->num_rows() == 1){
        return true;
    }
}

也许我正在思考这个问题,我应该将错误信息附加到电子邮件输入中?

1 个答案:

答案 0 :(得分:3)

您可以使用回调函数来完成此操作。步骤如下:
1.您的authorize_user()功能必须在您设置规则的控制器中 2.通过添加类似于:

的代码来制定“回调”规则
$this->form_validation->set_rules('email', 'email', 'callback_authorize_user['.$this->input->post("password").']');

请注意,我为回调函数添加了一个参数。这些函数自动接收由set_rules()的第一个参数确定的参数。在这种情况下,自动传递给回调函数的参数是电子邮件。另外,我将密码作为第二个参数传递。

3.将相应参数添加到您的函数中:

public function authorize_user($email,$password)
{
   //As I said before, the email is passed automatically cause you set the rule over the email field.
    $this->db->where('email', $email);
    $this->db->where('password', $password);

    $q = $this->db->get('users');

    if($q->num_rows() == 1){
        return true;
    }
}

更多信息:http://codeigniter.com/user_guide/libraries/form_validation.html#callbacks

希望它有所帮助!