我已经通读了文档,并努力理解该怎么做。另外,我已经阅读了有关stackoverflow的问题,但没有尝试帮助。

我有一个下拉列表,我想列出公司中的所有员工。该列表应显示如下:

Name Surname (Job Title)

在我的模型中,我有这段代码:
public $virtualFields = array(
    'fullname' => 'CONCAT(HrEmployee.name, " ", HrEmployee.surname, " (", HrEmployee.jobTitle, ")")'
);

在我的 Controller 中,我有这个:
$hrEmployees = $this->User->HrEmployee->find('fullname',
    array(
        'fields' => array('HrEmployee.name','HrEmployee.surname','HrEmployee.jobTitle'),
        'order' => array('HrEmployee.name'=>'ASC','HrEmployee.surname'=>'ASC')
));

但是我得到这个错误:
Error: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS `User__fullname` FROM `intraweb_db`.`users` AS `User` WHERE `User`.`hr_emp' at line 1

我必须改变什么?我可以看到它正在构建查询,但它却在改变它,这真是太糟糕了……

有人可以协助吗?

最佳答案

很酷,所以我修复了它。部分感谢布兰登(Brandon)为我指明了正确的方向。

由于虚拟字段的限制,我不得不执行解决方法。

因此,在我的HrEmployee模型中,我这样做:

public $virtualFields = array(
    'fullname' => 'CONCAT(HrEmployee.name, " ", HrEmployee.surname, " (", HrEmployee.jobTitle, ")")'
);

在我的用户模型中,我将其更改为:
class User extends AppModel {
public function __construct($id = false, $table = null, $ds = null) {
    parent::__construct($id, $table, $ds);
    $this->virtualFields['fullname'] = $this->HrEmployee->virtualFields['fullname'];
}

最后,在我的UsersController中,我对其进行了一些更改:
$hrEmployees = $this->User->HrEmployee->find('list',
    array(
        'fields' => array("id","fullname"),
        'order' => array('HrEmployee.name ASC','HrEmployee.surname ASC')
));

关于php - 在cakePHP 2.x中使用虚拟字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14630819/

10-10 14:35