例えば:
$this->load->model('home_module'); //loading a model in controller
$this->data["links"]=$this->home_module->create_links();
$this->data["banner"]=$this->home_module->get_banner();
$this->page_title='Title';
$this->template
->set_layout('general')
->enable_parser(FALSE)
->title($this->page_title)
->build('body', $this->data);
私の質問は、ビューを使用して同じことを行う方法と、パフォーマンスの点でどちらが優れているかです!!!