我正在尝试为 codeigniter 表单验证添加自定义错误消息。$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
1 回答
慕盖茨4494581
TA贡献1850条经验 获得超11个赞
在 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不会在您使用的版本中设置验证消息。
- 1 回答
- 0 关注
- 80 浏览
添加回答
举报
0/150
提交
取消