gpt4 book ai didi

cakephp-3.0 - 在关联定义中匹配的自定义查找器?

转载 作者:行者123 更新时间:2023-12-01 14:28:27 28 4
gpt4 key购买 nike

我有两个模型:具有 belongsToMany 关联的联系人和群组。

我只想获取联系人可访问的内容。为此,我有一个自定义查找器。

public function findAccessible(Query $query, array $options){
return $query
->where(['admin_user_id' => $options['User.id']])
->orWhere(['public' => true])
->matching('Users', function($q) use ($options){
return $q->orWhere(['Users.id' => $options['User.id']]);
});
}

这样我就可以调用 following,我会得到我想要的。

$accessibleGroups = $this->Contacts->Groups->find('accessible', ['User.id' => $this->Auth->user('id')]);

但如果我有一个容器,它会返回所有组,而不仅仅是可访问的组。

$contact = $this->Contacts->get($id, [
'contain' => ['Groups']
]);

如何限制可访问的内容?

我无法将自定义查找器添加到表关联定义的查找器属性中,因为我无法在那里传递 $options。或者我可以吗?

最佳答案

让我引用文档和测试(如果您无法在文档中找到某些内容,测试通常是获取有关如何做事的信息的有用来源)。

http://book.cakephp.org/3.0/en/orm/table-objects.html#passing-conditions-to-contain

If you have defined some custom finder methods in your associated table, you can use them inside contain:

// Bring all articles, but only bring the comments that are approved and
// popular.
$query = $articles->find()->contain([
'Comments' => function ($q) {
return $q->find('approved')->find('popular');
}
]);

在那种情况下,您可以简单地在 find() 调用中传递条件,就像您已经在做的那样。


http://book.cakephp.org/3.0/en/orm/table-objects.html#using-the-finder-option

https://github.com/cakephp/cakephp/blob/7fc4cfe3ae7d4c523331a44e2862bab5c8f44f1e/tests/TestCase/ORM/QueryTest.php#L2175

所以还有这个“隐藏的”finder 选项可以用来代替可调用对象:

$table->find('all')
->where(['Articles.author_id' => $authorId])
->contain([
'Authors' => [
'finder' => ['byAuthor' => ['author_id' => $authorId]]
]
]);

我想如果在 Cookbook 中更详细地记录 finder 的使用也不会有什么坏处,Query::contain() 的文档 block 也缺少有关它的信息。

关于cakephp-3.0 - 在关联定义中匹配的自定义查找器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26926945/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com