我正在尝试为代码点火器表单验证添加自定义错误消息。
$this->load->library('form_validation');
$this->form_validation->set_rules('month', 'Month', 'trim|required', array('required' => 'You need to supply period starting month'));
但不幸的是,我仍然得到
"月份"字段为必填项。
错误信息。
我的 ci 版本是2.0.2
在 CI 2 中,您需要设置自定义错误消息,如下所示:
$this->form_validation->set_message('rule', 'Error Message');
根据您的要求,这可能会起作用,
$this->form_validation->set_rules('month', 'period starting month', 'trim|required');
$this->form_validation->set_message('required', 'You need to supply %s');
请参阅文档
set_rules
不会在您正在使用的版本中设置验证消息。