laravel 4 eloquent eager load relation count(laravel 4 雄辩的急切加载关系计数)
问题描述
我有一个具有多个定义关系的复杂模型.在这个例子中,我想计算 Like
模型并创建一个名为 likes
的属性,以便它可以从 REST 服务返回.
I have a complex Model with multiple defined relations. In this example I would want to count the Like
model and create a property named likes
so it can be returned from a REST service.
是否可以将模型计数预先加载到动态属性中?
Is it possible to eager load a model count into a dynamic property?
$beat = Post::with(
array(
'user',
'likes' => function($q){
$q->count();
}
))
->where('id', $id)
->first();
推荐答案
假设您有 Post->hasMany->Like
关系,并且您已声明 Likes 关系为:
Assuming you are having Post->hasMany->Like
relationship and you have declared likes relationship as:
class Post{
public function likes(){
return $this->hasMany('Like');
}
}
创建一个新函数,比如 likeCountRelation
为:
create a new function say likeCountRelation
as:
public function likeCountRelation()
{
$a = $this->likes();
return $a->selectRaw($a->getForeignKey() . ', count(*) as count')->groupBy($a->getForeignKey());
}
现在您可以将 __get()
函数重写为:
now you can override __get()
function as:
public function __get($attribute)
{
if (array_key_exists($attribute, $this->attributes)) {
return $this->attributes[$attribute];
}
switch ($attribute) {
case 'likesCount':
return $this->attributes[$attribute] = $this->likesCountRelation->first() ? $this->likesCountRelation->first()->count : 0;
break;
default:
return parent::__get($attribute);
}
}
或者你可以使用 getattribute 函数:
or you can use getattribute function as :
public function getLikesCountAttribute(){
return $this->likesCountRelation->first() ? $this->likesCountRelation->first()->count : 0;
}
并且只需将 likesCount 作为 $post->likesCount
访问,您甚至可以像这样急切加载它:
and simply access likesCount as $post->likesCount
you can even eager load it like:
$posts=Post::with('likesCountRelation')->get();
foreach($post as $post){
$post->likesCount;
}
注意:
相同的逻辑可用于变形许多关系.
NOTE:
Same logic can be used for morph many relationships.
这篇关于laravel 4 雄辩的急切加载关系计数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:laravel 4 雄辩的急切加载关系计数
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01