我正在使用 Codeigniter 提供的验证库。
我的 Web 应用程序使用会话和 javascript 来填充警报消息。
因此,我希望我的错误消息采用 json 格式。
但是辅助函数 validation_errors() 只输出 html 格式。
我能做些什么?
if ($this->form_validation->run() == FALSE)
{
add_flash_message('alert', $flash_in_json);
redirect('enquiry/create');
}