我想在下拉列表中显示我们所有项目负责人的姓名。
项目负责人只是在公司工作的部分员工。
这是我的表:
project_leaders
,----,----------------,
| id | hr_employee_id |
|----|----------------|
| 1 | 18 |
'----'----------------'
projects
,----,------,-------------------,
| id | name | project_leader_id |
|----|------|-------------------|
| 1 | cake | 1 |
'----'------'-------------------'
hr_employees
,----,------,---------,
| id | name | surname |
|----|------|---------|
| 18 | joe | dirt |
'----'------'---------'
我的 ProjectsController 看起来像这样:
public function add() {
if ($this->request->is('post')) {
$this->Project->create();
if ($this->Project->save($this->request->data)) {
$this->_sendProjectRequestEmail($this->Project->getLastInsertID() );
$this->Session->setFlash(__('The project has been saved'));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The project could not be saved. Please, try again.'));
}
}
$this->set('projectLeaders',$this->Project->ProjectLeader->find('list');
}
这仅返回项目负责人的 id,而不是姓名和姓氏。因此,它返回 1 而不是 Joe Dirt。
我试过 $this->Project->ProjectLeader->HrEmployee->find('list') 但这列出了所有员工。
我也尝试过指定字段,但它返回一个未知字段错误。
我究竟做错了什么?