我最近从他们的网站下载了杂货,我在使用模板加载视图时遇到了一个小问题。 在控制器中加载视图的功能看起来像这样
function _example_output($output = null)
{
$this->load->view('groceryView.php',$output);
}
function index()
{
$this->_example_output((object)array('output' => '' , 'js_files' => array() ,'css_files' => array()));
}
我想要尝试实现的是
$data['main_content'] = 'groceryView';
$this->load->view('dashboardTemplate/template',$data);
我不知道我是否这样做我怎么能传递输出...因为如果我这样做会给我一个错误
$data['output'] = 'output';
答案 0 :(得分:0)
您可以加载多个视图。您需要修改_example_output。如果你有单独的页眉和页脚,你可以像这样加载它。
function _example_output($output = null)
{
$this->load->view('header.php');
$this->load->view('groceryView.php',$output);
$this->load->view('footer.php');
}