我尝试从类getTemplate
InitTemplate
首先我加载库:
$this->CI->load->library('InitTemplate', $this->posts);
通话后方法:
$view = $this->CI->InitTemplate->getTemplate();
我收到错误:
致命错误:在非对象上调用成员函数getTemplate() 在行$ this-> CI-> InitTemplate-> getTemplate();
如果将echo 'test';
放在构造函数InitTemplate中,它可以正常工作
这是一个类的构造函数,其中加载了一个库:
public function __construct($data){
$this->CI = & get_instance();
}