我有一个如下代码:
$this->form_validation->set_rules("codetype", "Code Type", array(
"codecheck" => function ($str) {
// just return it false.
return false;
}
), array("codecheck"=>"return this message"));
我希望它返回codecheck错误消息。但是codeigniter表单验证类返回此消息:
"无法访问与您的字段名称对应的错误消息 代码类型"。
如何使用错误消息编写完全匿名的CodeIgniter函数?
答案 0 :(得分:1)
希望这会对您有所帮助:
如果需要,您可以删除@RequestBody
并设置required
条件
if
答案 1 :(得分:0)
根据https://www.codeigniter.com/userguide3/libraries/form_validation.html
的CodeIgniter文档你可以这样做
$this->form_validation->set_message('username_check', 'The {field} field can not be the word "test"');