我对CodeIgniter很新,并尝试执行以下操作:
我有一个模型App,属性和声音。
在App-Controller的create方法中,我尝试保存属性和声音。我使用以下(基本工作)方法:
$this->load->library('../controllers/attributes');
$this->attributes->create('value1', 'value2');
这很有效,属性控制器可以在$this->attributes
中找到。
现在我试图为声音做同样的事情:
$this->load->library('../controllers/sounds');
$this->sounds->create('value3', 'value4');
这不起作用,因为声音控制器保存在$this->attributes->sounds
而不是$this->sounds
。
编辑:
$this->load->library(array('../controllers/sounds', '../controllers/attributes'));
导致同样的问题,它会变成$this->sounds
和$this->sounds->attributes
。
我的错误在哪里?