2

我需要找到与给定文章列表具有相同作者的所有文章

这是我的自定义查找器方法:

public function findSimilar(Query $query, array $options)
    {
        if (empty($options['idList'])) {
            throw new Exception('idList is not populated');
        }
        // We are given a list of article IDs
        $idList = $options['idList'];

        return $query->matching('Authors', function ($q) use ($idList) {
            return $q->matching('Articles', function ($q2) use ($idList) {
                return $q2->where(['Articles.id IN' => $idList]);
            });
        });
    }

不幸的是,我收到以下错误消息:PDOException:SQLSTATE[42000]: Syntax error or access violation: 1066 Not unique table/alias: 'Articles' 我做错了什么?

4

2 回答 2

6

嵌套匹配有很多限制,这可能就是其中之一。我不知道这是否是一个错误,所以你可能想检查GitHub 上的问题并最终提交一个新问题以进行澄清。

从文档中引用:

[...]点匹配路径应该用于嵌套的matching()调用[...]

食谱 > 数据库访问和 ORM > 检索数据和结果集 > 按关联数据过滤

在任何一种情况下,使用点表示法而不是嵌套应该可以解决问题,即

return $query->matching('Authors.Articles', function ($q) use ($idList) {
    return $q->where(['Articles.id IN' => $idList]);
});

如果你还想匹配 on Authors,你可以堆叠匹配器,比如

return $query
    ->matching('Authors', function ($q) {
        return $q->where(['Authors.foo' => 'bar']);
    })
    ->matching('Authors.Articles', function ($q) use ($idList) {
        return $q->where(['Articles.id IN' => $idList]);
    });
于 2016-02-28T17:14:39.543 回答
2

如果它是一个 HasMany 关系,我们可以很容易地做到这一点:

return $query->where([
   'Articles.author_id IN' => $this->find()
        ->select(['Articles.author_id'])
        ->where(['Articles.id IN' => $idList])
]);

// 感谢 CakePHP IRC 频道上的 jose_zap

于 2016-02-28T17:11:55.917 回答