如何使用此网址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());
}
}
答案 0 :(得分:4)
您可以使用
redirect('action/task/'.$this->index(),'refresh');
此代码将重新加载页面并重定向到所需的网址。
如果您遇到任何问题,请告诉我。
答案 1 :(得分:0)
codeigniter提供redirect,如:
redirect( base_url() . 'action/task/' . $this->index() );