从Cakebook我们得到了这个有效的例子:
public function findTagged(Query $query, array $options) {
return $this->find()
->distinct(['Articles.id'])
->matching('Tags', function ($q) use ($options) {
if (empty($options['tags'])) {
return $q->where(['Tags.title IS' => null]);
}
return $q->where(['Tags.title IN' => $options['tags']]);
});
}
例如,使用地址文章/ tagged / test / new,它会找到标记为“test”或标记为“new”的文章。我想以CakePHP方式修改此代码,以获取标记为“test”且标记为“new”的文章。
你有什么想法吗?
答案 0 :(得分:1)
以下是您的问题的解决方案:更新您的查找器查询,如下所示 -
public function findTagged(Query $query, array $options){
$this->opt = $options['tags'];
$articles = $this->find()
->select(['Articles.id', 'Articles.url', 'Articles.title', 'Articles.description'])
->matching('Tags', function ($query) {
return $query->where(['Tags.title IN' =>$this->opt]);
})->group(['Articles.id'])
->having([
$this->Users->query()->newExpr('COUNT(DISTINCT Tags.title) = '.count($this->opt))
]);
return $articles;
}
以上查询只返回文章的
matching tags
。