CakePHP - 在Model中找到hasMany关联而没有hasMany关系?

时间:2015-05-15 08:39:41

标签: php cakephp has-many

我想问你一个关于CakePHP的问题:我有2个模型用户和评论关系1-n(一个用户有很多评论)。我想使用find()列出信息用户及其评论格式数据返回:

Array
(
    [User] => Array
        (
            [id] => 121
            [name] => Gwoo the Kungwoo
            [created] => 2007-05-01 10:31:01
        )
    [Comment] => Array
        (
            [0] => Array
                (
                    [id] => 123
                    [user_id] => 121
                    [title] => On Gwoo the Kungwoo
                    [body] => The Kungwooness is not so Gwooish
                    [created] => 2006-05-01 10:31:01
                )
            [1] => Array
                (
                    [id] => 124
                    [user_id] => 121
                    [title] => More on Gwoo
                    [body] => But what of the 'Nut?
                    [created] => 2006-05-01 10:41:01
                )
        )
)

但我不想在模型User中配置关系hasMany作为链接:http://book.cakephp.org/2.0/en/models/associations-linking-models-together.html中的示例。我试过这段代码:

 $data = $this->User->find('all', array(
                'joins' => array(
                    array(
                        'table' => 'comment',
                        'alias' => 'Comment',
                        'type' => 'LEFT',
                        'conditions' => array(
                            'User.id = Comment.user_id'
                        )
                    ),
                    'conditions' => array(
                       'User.id' => $userId
                    ),
                     'fields' => array('User.*', 'Comment.*')
            ));

并且Cake返回一个具有重复用户记录的数组(例如:如果用户有2条注释,则返回2条用户重复记录)。

任何人都可以给我另一种解决方案吗? (但是配置有多种关系模型的解决方案除外),谢谢。

1 个答案:

答案 0 :(得分:1)

或者,您可以在控制器中使用bindModel

        $this->User->bindModel(
               array(
                 'hasMany'=>array(
                     'Comment' =>array(
                      'className' => 'Comment',
                      'foreignKey' => 'user_id',
                      'conditions' => array('Comment.status' => 'Active'),
                  )         
               )
            )
        ); 

        $data = $this->User->find('all',array('conditions'=>array('User.email'=>$userEmail)));

了解更多info

<强>已更新

有关详细信息,请查看此answer,通过此link

查看有关绑定和取消绑定模型的详细信息