我正在尝试根据codeigniter 的 doc为某个特定规则上的特定字段设置自定义错误消息,但我遇到了问题。我的代码如下所示
function start(){
$this->form_validation->set_message('rule1', 'Rule 1 Error Message');
$this->form_validation->set_rules('amount', lang('users amount'), 'required|trim|numeric|greater_than[0]', array('rule1' => 'Error Message on rule1 for this field_name'));
if ($this->form_validation->run() == FALSE)
{
$this->index();
}
else{
$amount =$this->input->post("amount", TRUE);
}
我已经测试了每个字段的规则并且它们工作正常,当我为每个表单字段添加自定义错误消息时问题就开始了。以前,如果出现错误,我会重定向并显示整个表单的通用消息。
$this->session->set_flashdata('error', "Please provide correct data about the transfer");
使用自定义消息,当我输入不遵守规则的数据时,它根本不会抛出自定义消息,但是对于像min_length
or之类的预定义规则,它确实会抛出错误max length
。
我已经按照文档进行了发球,但我不明白为什么会发生这个问题。我知道有一种方法可以使用回调函数抛出自定义消息,但最好我想使用这种方法。