为什么在调用视图文件时要传递变量名?
例如:$this->load->view("{$viewData->viewFolder}/{$viewData->subViewFolder}/index", $viewData);
为什么我们在最后一行代码处编写$viewData?
无需加载变量:
$data['view'] = 'folername/view_file_namae';
$this->load->view('you can call common file for header/footer here', $data);
要传递变量名称以查看文件,
$this->data['anyname'] = $variable;
$this->load->view('viewfilename',$this->data);
和 在视图文件名中,以echo $anyname;
访问传递的数据。您可以根据需要传递变量或数组。
如果要将变量名称附加到视图文件,可以使用 redirect(( 函数。
来源 : https://www.codeigniter.com/user_guide/helpers/url_helper.html#redirect
例如
redirect('home/category/'.$variable, 'refresh');
redirect('home/category/subcategory/'.$variable, 'refresh');