これが私のコードです。
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;