0

我做下一个查询:

        $this->find('all',array(
            'contain' => array(
                'User' => array('id','facebook_id','name','username','Author' => array('first_name','last_name','code','photo')),
                'Tab.code'
            ),
            'fields' => array('Comment.date','Comment.time','Comment.content'),
            'conditions' => array(
                'Tab.code' => $code
            ),
            'limit' => $limit,
            'offset' => $offset
        ));

评论...

    public $belongsTo = array(
        'User' => array('foreignKey' => 'user_id'),
        'Tab' => array('foreignKey' => 'tab_id')
    );

用户...

    public $hasOne = array('Author' => array('foreignKey' => 'id'));

和作者...

    public $belongsTo = array(
        'User' => array(
            'className' => 'User',
            'foreignKey' => 'id'
        )
    );

这会返回类似这样的内容(在 json 中)...

[
    {
        "Comment": {
            "date": "2001-12-15",
            "time": "17:32:12",
            "content": "..."
        },
        "User": {
            "id": "29",
            "facebook_id": "1234",
            "name": "User 29",
            "username": "user29"
        },
        "Tab": {
            "code": "llibre-de-prova-29",
            "id": "229"
        }
    }
    ...
]

...虽然我希望附加到用户出现一个带有我指定的字段的作者。你知道为什么作者没有出现吗?我在代码上做了其他包含两个级别的递归,并且所有工作都按预期工作。

感谢您的帮助和关注!

4

4 回答 4

0

您需要在“字段”键中指定字段。把它当作一个额外的find()电话。

$this->find('all', array(
            'contain' => array(
                'User' => array(
                    'fields' => array('id','facebook_id','name','username'),
                    'Author' => array(
                        'fields' => array('first_name','last_name','code','photo')
                    ),
                    'Tab.code'
                ),
            ),
            'fields' => array('Comment.date','Comment.time','Comment.content'),
            'conditions' => array(
                'Tab.code' => $code
            ),
            'limit' => $limit,
            'offset' => $offset
        ));
于 2012-07-26T14:39:37.037 回答
0

所有外键都必须在您的字段数组中

'fields' => array('Comment.date','Comment.time','Comment.content', 'Comment.user_id', ....)
于 2014-05-16T15:15:59.640 回答
0

确保您的模型附加了 Containable 行为。它应该包括以下行:

$actsAs = array('Containable');

请注意确保您没有在“acts”中省略“s”,这是一种很难发现的常见错字。您还可以像这样动态附加 Containable 行为:

$this->YourModel->Behaviors->attach('Containable');
$this->YourModel->find('all', array('contain' => array(...)));

还要确保键入“contain”作为数组键,而不是“contains”。

于 2012-10-17T17:00:21.927 回答
0
 $this->find('all',array(
        'contain' => array(
            'User' => array('id','facebook_id','name','username','Author' =>array( 'AuthorModelName'=>array('first_name','last_name','code','photo'))),
            'Tab.code'
        ),
于 2013-06-10T01:55:09.727 回答