これが私のコントローラーです
public function ajax_filter() {
$filters = array(
'start_date'=> $this->input->post('start_date'),
'end_date' => $this->input->post('end_date'),
'project' => $this->input->post('project'),
'repo' => $this->input->post('repo'),
'coder' => $this->input->post('coder'),
'user_id' => $this->current_user->id
);
// $start_date = $this->input->post('start_date');
$view = $this->load->view('overview', $filters, TRUE);
$ret = array( 'view' => $view);
die(json_encode($ret));
}
$view = $this->load->view('overview', $filters, TRUE);
問題はこの行にあると思いますが、データをビューに渡す他の方法はありますか?