帮我解决codeigniter中同一个类中的调用函数问题

时间:2011-09-03 02:40:44

标签: codeigniter

我有一个带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()函数中显示结果。

1 个答案:

答案 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.