我正在使用UsersController并尝试在另一个插件控制器中访问该模型上的方法:
if ($this->User->save($this->request->data)) {
$this->Discount->add($this->request->data, $this->User->getLastInsertID());
}
使用uses变量:
public $uses = array('Users.User','AnotherPlugin.Discount');
但是,当我尝试保存用户时,尝试在Discount模型上调用add方法时会出现auth违规。