1

我正在尝试在我的 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 ?>

而且我不知道如何解决这个问题。我知道这是一个简单的错误,我只是错过了一些时刻。这就是为什么如果有人可以帮助我,我会很高兴!提前致谢

4

1 回答 1

1

好的,现在我知道了。您定义了复合主键,但没有将其传递给findByPk

这应该有效:

Authdata::model()->findByPk(array(
    'idauthData' => $this->id,
    'employee_idEmployee' => $employeeId
), array('select' => 'role'));
于 2013-10-31T12:45:42.100 回答