我正在嘗試為 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');
根據(jù)您的要求,這可能會起作用,
$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 關注
- 92 瀏覽
添加回答
舉報
0/150
提交
取消