|
我用 ajax 提交一个数据到一个页面 我开启了 $config['csrf_protection'] = TRUE; 这个 请求的页面
$this->form_validation->set_rules('user_name', '用户名', "trim|required|min_length[4]|max_length[20]");
if ($this->form_validation->run() == FALSE) {
} else{
}
如果这样写的话 js 要报内部错误
要报错,有没有发点的解决方法啊? |
|