我有一个挂钩的功能:
public function checkIfLogged() {
$this->CI = & get_instance();
if(!$this->CI->session->userdata('logged') ){
$this->CI->load->view('common/home');
exit;
}
}
我的问题是$this->CI->load->view('common/home');
根本没有加载模板文件。有什么原因吗?
我正在使用 post_controller_constructor 挂钩。
谢谢,彼得