我想在我的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 ?>
我不知道怎么解决这个问题。
我知道这是一个简单的错误,我只是错过了一些时刻。如果有人能帮助我,我会很高兴的!
提前谢谢
最佳答案
好吧,现在我知道了。您定义了复合主键,但未将其传递给findByPk
:
这应该有效:
Authdata::model()->findByPk(array(
'idauthData' => $this->id,
'employee_idEmployee' => $employeeId
), array('select' => 'role'));