2

我正在使用 CakePHP 2.1
让我们声明我有以下模型和关系:
PostsbelongsTo Edition
PostsHABTM Editors
PostsHABTMTags

我从 推理PostsController并且我想找到所有Posts属于某个Edition,并且Editor.id=55是相关的并且Tag.id=33是相关的。

我发现了许多示例,其中Posts基于 HABTM 关系上的条件进行查找是通过从Editor.

$this->Editor->find('all',
    array(
        'conditions'=>array('Editor.id'=>55),
        'contain'=>array('Post')
    )
);

不幸的是,这在这里不起作用,因为我想设置多个 HABTM 关系。

usingcontain也不起作用,因为它只切断了一个分支 ( editors),但无助于过滤它的父级 ( posts)。

我该如何解决这个问题?
我可能需要诉诸临时加入吗?如果是这样,有人可以大致解释我采取什么方法吗?

编辑: 一些伪代码以说明我想要实现的目标:

$this->Post->find('all',
    array('conditions'=>array(
            'Edition.id'=>4,
             // start pseudo code
            'Post.Editor' => 'has at least one related editor with id=55',
            'Post.Tag' => 'has at least one related tag with id=33',
        )
    )
);

亲切的问候,巴特

编辑解决方案: 在@RichardAtHome 之后,我创建了下面的解决方案。(尚未)使用多个连接条件,但这似乎没有必要:

// Paginate over Cards that belong to current Subscription (belongsTo) AND the User is related to as an Editor (HABTM)
$this->paginate = array(
    'fields' => array('id','title','workingtitle','attachment_count','subscription_id'),
    'joins' => array(
        // create Editor-join
        array(
            'table' => 'cards_users',
            'alias' => 'Editor',
            'type' => 'left',
            'conditions' => array(
                'Editor.card_id = Card.id'
            )
        ), 
        array( 
            'table' => 'users', 
            'alias' => 'User', 
            'type' => 'left',
            'conditions'=> array( 
                'User.id = Editor.user_id'
            ) 
        )
    ),
    'conditions' => array(
        'OR' => array(
            // is Card in current subscription? (straightforward condition)
            array('Card.subscription_id',$subscription_id),
            // is current User assigned as Editor? (condition works with join above)
            array('User.id' => $user['id'])
        )
    ),
    'limit' => 10
);
4

2 回答 2

6

对于这种类型的查询,我通常发现自己构建连接最容易,因为 cake 不会连接,它将执行多个查询(从表 a 中选择匹配的行,然后从表 b 中获取匹配的行)。

您的查询需要看起来像这样:

$this->Post->find('all',
    array(
        'conditions'=>array('Post.edition_id'=>4),
        'joins'=>array(
            array(
                'type'=>'inner',
                'table'=>'posts_editors',
                'alias'=>'PostsEditor',
                'conditions'=>array(
                    'PostsEditor.post_id = Post.id',
                    'PostsEditor.editor_id'=>55 // your criteia for editor id=55
                )
            ),
            array(
                'type'=>'inner',
                'table'='posts_tags',
                'alias'=>'PostsTag',
                'conditions'=>array(
                    'PostsTag.post_id = Post.id',
                    'PostsTag.tag_id'=>33 // your criteria for tag id = 33
                )

            )
        )
    )
);

检查输出的 SQL 以了解此查询在幕后实际执行的操作。

于 2012-08-23T13:11:58.550 回答
0

尝试:

$this->Post->find('all',
        array('conditions'=>array(
                'Edition.id'=>4,
                'Editor.id' => '55',
                'Tag.id' => '33',
            )
        )
    );
于 2012-08-23T11:36:19.867 回答