如何通过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