【问题标题】:codeigniter rules group form validationcodeigniter 规则组表单验证
【发布时间】:2015-09-27 11:13:37
【问题描述】:

正如 Codeigniter 文档所说,我们可以在 form_validation.php 配置文件中创建规则集。我想我已按照说明进行操作,但问题是它显示的是空错误消息,而不是在配置数组中设置的错误消息。 我的 form_validation.php 配置文件

$config = array(
    'users/register' => array(
        array(
            'field' => 'user_type',
            'label' => 'User Type',
            'rules' => 'required|in_list[2,3]',
            'errors' => array(
                'in_list' => '%s Accept only agents or owners!'
            )
        ),
        array(
            'field' => 'first_name',
            'label' => 'First Name',
            'rules' => 'trim|required|alpha_numeric_spaces',
            'errors' => array(
                'required' => 'Required field.',
                'alpha_numeric_spaces' => 'Only letters, number and space are allowed for %s.'
            )
        ),
        array(
            'field' => 'last_name',
            'label' => 'Last Name',
            'rules' => 'trim|required|alpha_numeric_spaces',
            'errors' => array(
                'required' => 'Fields with red asterisk is required!',
                'alpha_numeric_spaces' => 'Only letters, number and space are allowed for %s.'
            )
        ),
        array(
            'field' => 'sex',
            'label' => 'Gender',
            'rules' => 'trim|required|in_list[male,female]',
            'errors' => array(
                'in_list' => 'Optional, %s field must be male or female.'
            )
        ),
        array(
            'field' => 'password',
            'label' => 'Password',
            'rules' =>'trim|required|min_length[6]|max_length[25]',
            'errors' => array(
                'required' => 'Required field.',
                'min_length' => '%s must be between 6-25 characters long.',
                'max_length' => '%s must be between 6-25 characters long.'
            )
        ),
        array(
            'field' => 'confirm_password',
            'label' => 'Password confirmed',
            'rules' => 'trim|required|matches[password]',
            'errors' => array(
                'required' => 'Required field.',
                'matches' => '%s doesn\'t match with password field.'
            )
        ),              
        array(
            'field' => 'email',
            'label' => 'Email',
            'rules' => 'trim|required|is_unique[users.email]|valid_email',
            'errors' => array(
                'required' => 'Required field.',
                'is_unique' => '%s is already taken.',
                'valid_email' => '%s must be valid. For example, johndoe@example.com'
            )
        )
    ),
    'users/update_address' => array(
        array(
            'field' => 'house_number',
            'label' => 'House Number',
            'rules' => 'trim|alpha_numeric_spaces',
            'errors' => array(
                'alpha_numeric_spaces' => 'Only letters, space and number are allowed for %s'
            )
        ),
        array(
            'field' => 'street_number',
            'label' => 'Street Number',
            'rules' => 'trim|alpha_numeric_spaces',
            'errors' => array(
                'alpha_numeric_spaces' => 'Only letters, space and number are allowed for %s'
            )
        ),
        array(
            'field' => 'city_id',
            'label' => 'City or Province',
            'rules' => 'trim|is_natural',
            'errors' => array(
                'is_natural' => 'Only number is allowed for %s'
            )
        ),
        array(
            'field' => 'district_id',
            'label' => 'District or Khan',
            'rules' => 'trim|is_natural',
            'errors' => array(
                'is_natural' => 'Only number is allowed for %s'
            )
        ),
        array(
            'field' => 'commune_id',
            'label' => 'Commune or sangkat',
            'rules' => 'trim|is_natural',
            'errors' => array(
                'is_natural' => 'Only number is allowed for %s'
            )
        )
    )
);

这是我的用户控制器

class Users extends AL_Controller {
    public function __construct() {
        parent::__construct();
        $this->load->helper(['url','form']);
        $this->load->model('user');
        $this->load->model('ion_auth_model');
        $this->load->library('form_validation');
    }

public function update_address() {
        header('Content-Type: application/x-json; charset=utf-8');
        if(!$this->ion_auth->logged_in()) {
            redirect(base_url(). 'users/login', 'refresh');
        } else {
            if($this->form_validation->run('update_address') == FALSE) {
                $data['errors'] = validation_errors();
                echo json_encode(array('status' => 'ERROR', 'msg' => 'Your form contains error(s). Please fix it.', 'err' => $data));
            } else {
                $user_id = $this->ion_auth->get_user_id();
                if($this->user->edit_user_address($user_id)) {
                    echo json_encode(array('status' => 'OK', 'msg' => 'Your address has been updated!'));
                } else {
                    echo json_encode(array('status' => 'ERROR', 'msg' => 'Unable to update your address. Please refresh your page and try again.'));
                }
            }
        }
    }
}

这是显示的错误消息

{"status":"ERROR","msg":"Your form contains error(s). Please fix it.","err":{"errors":""}}

【问题讨论】:

  • try putting var_dump($data) 之前 echo json_encode(array('status' => 'ERROR', 'msg' => 'Your form contains error(s). Please fix it.', 'err' => $data)); 看看结果是什么
  • array(1) { ["errors"]=> string(0) "" }
  • 查看没有消息表明它是空的
  • 是的,肯定还是空字符串。我认为这是 Codeigniter 错误?
  • 你已经设置了这个$this->form_valiation->set_rule($config);

标签: php codeigniter validation


【解决方案1】:

我做了类似的事情,但我没有在配置文件中使用类/方法名关联。我做了如下操作:

form_validation.php

$config = array(
    'register' => array(
        array(
            'field' => 'user_type',
            'label' => 'User Type',
            'rules' => 'required|in_list[2,3]',
            'errors' => array(
                'in_list' => '%s Accept only agents or owners!'
            )
        ),
        array(
            'field' => 'first_name',
            'label' => 'First Name',
            'rules' => 'trim|required|alpha_numeric_spaces',
            'errors' => array(
                'required' => 'Required field.',
                'alpha_numeric_spaces' => 'Only letters, number and space are allowed for %s.'
            )
        ),
        array(
            'field' => 'last_name',
            'label' => 'Last Name',
            'rules' => 'trim|required|alpha_numeric_spaces',
            'errors' => array(
                'required' => 'Fields with red asterisk is required!',
                'alpha_numeric_spaces' => 'Only letters, number and space are allowed for %s.'
            )
        ),
        array(
            'field' => 'sex',
            'label' => 'Gender',
            'rules' => 'trim|required|in_list[male,female]',
            'errors' => array(
                'in_list' => 'Optional, %s field must be male or female.'
            )
        ),
        array(
            'field' => 'password',
            'label' => 'Password',
            'rules' =>'trim|required|min_length[6]|max_length[25]',
            'errors' => array(
                'required' => 'Required field.',
                'min_length' => '%s must be between 6-25 characters long.',
                'max_length' => '%s must be between 6-25 characters long.'
            )
        ),
        array(
            'field' => 'confirm_password',
            'label' => 'Password confirmed',
            'rules' => 'trim|required|matches[password]',
            'errors' => array(
                'required' => 'Required field.',
                'matches' => '%s doesn\'t match with password field.'
            )
        ),              
        array(
            'field' => 'email',
            'label' => 'Email',
            'rules' => 'trim|required|is_unique[users.email]|valid_email',
            'errors' => array(
                'required' => 'Required field.',
                'is_unique' => '%s is already taken.',
                'valid_email' => '%s must be valid. For example, johndoe@example.com'
            )
        )
    ),
    'update_address' => array(
        array(
            'field' => 'house_number',
            'label' => 'House Number',
            'rules' => 'trim|alpha_numeric_spaces',
            'errors' => array(
                'alpha_numeric_spaces' => 'Only letters, space and number are allowed for %s'
            )
        ),
        array(
            'field' => 'street_number',
            'label' => 'Street Number',
            'rules' => 'trim|alpha_numeric_spaces',
            'errors' => array(
                'alpha_numeric_spaces' => 'Only letters, space and number are allowed for %s'
            )
        ),
        array(
            'field' => 'city_id',
            'label' => 'City or Province',
            'rules' => 'trim|is_natural',
            'errors' => array(
                'is_natural' => 'Only number is allowed for %s'
            )
        ),
        array(
            'field' => 'district_id',
            'label' => 'District or Khan',
            'rules' => 'trim|is_natural',
            'errors' => array(
                'is_natural' => 'Only number is allowed for %s'
            )
        ),
        array(
            'field' => 'commune_id',
            'label' => 'Commune or sangkat',
            'rules' => 'trim|is_natural',
            'errors' => array(
                'is_natural' => 'Only number is allowed for %s'
            )
        )
    )
);

控制器类

class Users extends AL_Controller {
    public function __construct() {
        parent::__construct();
        $this->load->helper(['url','form']);
        $this->load->model('user');
        $this->load->model('ion_auth_model');
        $this->load->library('form_validation');
    }

public function update_address() {
        header('Content-Type: application/x-json; charset=utf-8');
        if(!$this->ion_auth->logged_in()) {
            redirect(base_url(). 'users/login', 'refresh');
        } else {
            if($this->form_validation->run('update_address') == FALSE) {
                $data['errors'] = validation_errors();
                echo json_encode(array('status' => 'ERROR', 'msg' => 'Your form contains error(s). Please fix it.', 'err' => $data));
            } else {
                $user_id = $this->ion_auth->get_user_id();
                if($this->user->edit_user_address($user_id)) {
                    echo json_encode(array('status' => 'OK', 'msg' => 'Your address has been updated!'));
                } else {
                    echo json_encode(array('status' => 'ERROR', 'msg' => 'Unable to update your address. Please refresh your page and try again.'));
                }
            }
        }
    }
}

注意:autoload.php 中,我添加了$autoload['libraries'] = array('form_validation'); 以加载form_validation 配置。

希望这也适用于您。如果您遇到任何其他问题,请告诉我。

【讨论】:

  • 根据您的经验,我们能否显示如下错误消息 { "status": "ERROR", "msg": "Your form contains error(s). Please fix it.", "err": { "errors": {"house_number":"House Number 只能使用字母、空格和数字}, {"street_number":"Street Number 只能使用字母、空格和数字"} }
  • 在我的应用程序中,我以不同的方式处理它。我将validation_errors 存储在一个变量中,然后我编写了一个方法,该方法接受该变量数据并循环遍历每个项目并在模式弹出窗口中显示错误消息。
  • 根据您的示例,您为行 echo json_encode(array('status' => 'ERROR', 'msg' => 'Your form contains error(s). Please fix it.', 'err' => $data)); 获得了什么数据?你能把它贴在这里吗? BTW { "status": "ERROR", "msg": "Your form contains error(s). Please fix it.", "err": { "errors": {"house_number":"Only letters, space and number are allowed for House Number}, {"street_number":"Only letters, space and number are allowed for Street Number"} } } 是一个 json 文档。所有最终用户都没有那种体验来理解它。您必须为用户显示正确的验证消息。
  • 如果json_encode(array('status' => 'ERROR', 'msg' => 'Your form contains error(s). Please fix it.', 'err' => $data)); 行按照您的预期返回正确的数据,那么您能告诉您接下来需要什么吗?
  • 我想要特定字段的错误,例如如果 house_number 字段不正确则返回 {"house_number":"Only letters, space and number are allowed for House Number} 键值对像这样的
【解决方案2】:

我终于找到了答案。 Codeigniter 文档没有明确说明类/方法名称关联。当我从

$this->form_validation->run('update_address') == FALSE

$this->form_validation->run('users/update_address') == FALSE

但是,如下所示的消息显示很难确定哪个错误出现在哪个字段中。任何更好的答案将不胜感激。

{"status":"ERROR","msg":"Your form contains error(s). Please fix it.","err":{"errors":"<p>Only letters, space and number are allowed for House Number<\/p>\n<p>Only letters, space and number are allowed for Street Number<\/p>\n"}}

【讨论】:

  • 这将完全解决我的问题 echo json_encode(array('status' => 'ERROR', 'msg' => 'Your form contains error(s). Please fix it.', 'errors ' => $this->form_validation->error_array()));感谢@Deepak Biswal 的帮助。按预期给我错误{“status”:“错误”,“msg”:“您的表单包含错误。请修复它。”,“错误”:{“house_number”:“只有字母,空格和数字allowed for House Number", "street_number": "Street Number 只允许字母、空格和数字" } }
【解决方案3】:

application/config/form_validation.php

您已经在那里定义了表单验证规则

所以你必须加载

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

并尝试访问配置规则

$this->form_validation->set_rules($this->form_validation->set_rules($this->config->item('users/update_address'));

看看有没有帮助

【讨论】:

  • 不工作的家伙。 item('$config['users/update_address']'));变量不能用单引号
  • @Daroath 错字$this-&gt;form_validation-&gt;set_rules($this-&gt;config-&gt;item('users/update_address')); 看看这是否有效
猜你喜欢
  • 2015-04-10
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-07-02
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2019-11-21
相关资源
最近更新 更多