我想在我的Yii应用程序中进行授权。 在我的数据库中,我有authData表,其中包含2个主键:
CREATE TABLE IF NOT EXISTS `authdata` (
`idauthData` int(11) NOT NULL AUTO_INCREMENT,
`login` varchar(45) NOT NULL,
`password` varchar(80) NOT NULL,
`role` varchar(45) NOT NULL,
`email` varchar(60) NOT NULL,
`employee_idEmployee` int(11) NOT NULL,
PRIMARY KEY (`idauthData`,`employee_idEmployee`),
UNIQUE KEY `idauthData_UNIQUE` (`idauthData`),
KEY `fk_authData_employee1_idx` (`employee_idEmployee`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
在我的Authdata模型中,我覆盖了primaryKey()方法:
public function primaryKey()
{
return array('idauthData', 'employee_idEmployee');
}
但是当我尝试使用findByPk()方法在Authdata activeRecord类中找到一行时,我得到一个异常:
private function getModel(){
if (!$this->isGuest && $this->_model === null){
$this->_model = Authdata::model()->findByPk(array($this->id), array('select' => 'role'));
}
return $this->_model;
}
该例外有下一个描述: 查询“authdata”表时未提供“idauthData”列的值。
C:\xampp\htdocs\helloworld\protected\components\WebUser.php(14): CActiveRecord->findByPk(array("15"), array("select" => "role"))
09 }
10 }
11
12 private function getModel(){
13 if (!$this->isGuest && $this->_model === null){
14 $this->_model = Authdata::model()->findByPk(array($this->id), array('select' => 'role'));
15 }
16 return $this->_model;
17 }
18 }
19 ?>
而且我不知道如何解决这个问题。 我知道这是一个简单的错误,我只是错过了一些时刻。这就是为什么如果有人能帮助我,我会很高兴的! 提前致谢
答案 0 :(得分:1)
好的,现在我知道了。您定义了复合主键,但未将其传递给findByPk
:
这应该有效:
Authdata::model()->findByPk(array(
'idauthData' => $this->id,
'employee_idEmployee' => $employeeId
), array('select' => 'role'));