0

如何使用这个 url localhost/pitch/action/task/1 ?1 = 音高 ID 请回答这个问题。谢谢你

这是我的代码控制器。

public function insert_task(){

    $this->load->model("save");

    $data['pitch_id'] = $this->input->post('pitch');
    $data['date'] = $this->input->post('date');
    $data['name'] = $this->input->post('name');
    $data['description'] = $this->input->post('description');

    $task = $this->save->insert_task_to_db($data);

    if($task){
        header('location:'.base_url()."action/task".$this->index());
    }
}
4

2 回答 2

4

您可以使用

redirect('action/task/'.$this->index(),'refresh');

此代码将重新加载页面并重定向到所需的 url。

如果您遇到任何问题,请告诉我。

于 2013-06-26T07:15:12.253 回答
0

codeigniter 提供重定向,例如:

redirect( base_url() . 'action/task/' . $this->index() );
于 2013-06-26T04:29:57.090 回答