回调不在codeigniter 3.0中工作

时间:2015-04-29 08:19:14

标签: php codeigniter callback codeigniter-form-helper

<?php

class Form extends CI_Controller {

    public function index()
    {
        $this->load->helper(array('form', 'url'));

        $this->load->library('form_validation');

        $this->form_validation->set_rules('email', 'Email', 'required|valid_email');
        $this->form_validation->set_rules('password', 'Password', 'required');
        $this->form_validation->set_rules('confpassword', 'Password', 'required|matches[password]', 'callback__matcherror');



        //$this->form_validation->set_rules('passconf', 'Password Confirmation', 'required');
        //$this->form_validation->set_rules('email', 'Email', 'required');

        if ($this->form_validation->run() == FALSE)
        {
            $this->load->view('login');

        }
        else
        {

            $this->load->view('insert_dream');

        }

    }

public function _matcherror() {
    $this->form_validation->set_message('_matcherror', 'Passwords should match');
    return FALSE;
}

}
?>

我是codeigniter的新手。上面的代码没有显示密码应该匹配错误消息。回调有问题,或者我错过了什么。

3 个答案:

答案 0 :(得分:0)

您正在传递callback__matcherror作为set_rules函数的第四个参数。它应该是第三个参数。用这种方式

$this->form_validation->set_rules('confpassword', 'Password', 'required|matches[password]|callback__matcherror');

注意

如果您的密码字段匹配,您将收到此错误消息。因为您应用3规则there.3rd规则(call_back_function)将在第二个规则成功时应用。密码匹配时,您的第二条规则有效。

答案 1 :(得分:0)

matches[password]

会自动检查密码。您无需使用回调函数callback__matcherror

答案 2 :(得分:0)

看看here。你不需要回电。