0

如何通过它的 id 在列表中显示名称。代码如下。

$allocationIds = $this->Staff->StaffAllocation->find('list',array(
                         'fields'=>array('StaffAllocation.group_id' ), 
                         'conditions'=>$conditions));

输出来了

Array
(
    [7] => 5
)

5是来自字段分配的组ID

'fields'=>array('StaffAllocation.group_id' ),

这里我们需要

Array
(
    [7] => group name
)

因为我们与组表有关系StaffAllocation

4

0 回答 0