cakephp find list

后端 未结 5 681
陌清茗
陌清茗 2020-12-31 09:55

Hi I want to be able to generate a list using find so that I can use in select helper. but there is a problem. i want too fetch id,name(first + last). so how can I achieve i

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-31 10:03

    To achieve this first go to the model and add this line

      public $virtualFields = array('full_name' => 'CONCAT(first_name, " ", last_name)');
    

    and then go to controller file just use the name "full_name" which you put in virtual fields

    $this->User->find('all',array('fields' => array('full_name','id')));
    

    It returns name with combined fields

提交回复
热议问题