这是我的代码。
public function usertype($renderData='')
{
$this->grocery_crud->set_table('usertype');
$output = $this->grocery_crud->render();
$this->_example_output($output,$renderData='');
}
function _example_output($output = null,$renderData='')
{
// $this->load->view('pages/our_template',$output);
//echo $output;
// $this->output=$output;
$this->_render('pages/our_template',$renderData);
}
我想使用 $this->_render('pages/our_template',$renderData); 而不是 $this->load->view('pages/our_template',$output); 但我需要将 $output 传递给视图页面。请帮助我找到一种使用 $renderData 将 $output 传递到我的视图页面的方法。
在我的视图页面中,我想获取类似的数据
echo $output;