我有一个带2个功能的控制器:
function add($reply = NULL)
{
}
function submit()
{
...
$this->add(validation_errors());
}
添加()函数show view add_form。
在submit()函数中,我有形式的值,并将结果发送回add()。
但是......它重定向到错误页面(文章/ 13.html - 未找到)?
PS:我检查过它并意识到它可以通过print_r(validation_errors())在submit()函数中显示结果。
答案 0 :(得分:0)
在CodeIgniter中,表单处理通常在与提交表单的表单相同的控制器函数中完成。您可以通过在代码中添加if函数来完成此操作:
if($this->form_validation->run()) {
// here is where the code for processing your form goes. Eg,
$this->model->add("this");
redirect("");
}
// Here you load the view, which should have validation_errors()
// where you want the errors to appear.