如何在 codigniter 中加载多个模型
类 c_home 扩展 CI_Controller {
function __construct(){
parent::__construct();
$this->load->model('mhome/m_home');
$this->load->model('mcommon/m_common');
}
我有两个模型 m_home 和 m_common m_home 加载但 m_common 未加载给出错误消息:未定义的属性:c_home::$m_common