如何在laravel eloquent查询中获得前10个类别列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在laravel eloquent查询中获得前10个类别列表相关的知识,希望对你有一定的参考价值。
我有三个表一个是category
表,另一个是product
表和另外一个product_to_category
表,它只有product_id
和category_id
列。
现在,我希望获得最多10个类别的产品数量,每个类别的10个产品的详细信息。
我写的是
$result = ProductToCategory::groupBy('category_id')->with(['product',function($q){
$q->take(10);
}])->orderBy('category_id)->take(10);
但这不起作用。如何正确编写此查询可以有人请帮忙。 TY
模范关系
对于产品型号
public function category(){
return $this->belongsTo(ProductToCategory::class);
}
对于分类模型
public function products()
{
return $this->hasMany(ProductToCategory::class);
}
对于ProductToCategory模型
public function product()
{
return $this->hasMany(Product::class);
}
public function category()
{
return $this->belongsTo(Category::class);
}
答案
最有效的方法是使用原始SQL查询,因为您无法使用预先加载约束来过滤产品。
但是如果你想要一个Eloquent解决方案,那么定义关系:
在Product
模型中:
public function categories()
{
return $this->belongsToMany(Category::class, 'product_to_category');
}
在Category
模型中:
public function products()
{
return $this->belongsToMany(Product::class, 'product_to_category');
}
然后你将有两个选择,两者都有其优点和缺点:
这段代码只执行2次查询但会占用更多内存。你可以用他们的产品获得十大类别:
$categories = Category::withCount('products')->latest('products_count')->take(10)->with('products')->get();
然后只保留前十个产品:
$categories->transform(function($category) {
$topProducts = $category->products->take(10);
unset($category->products);
$category->products = $topProducts;
return $category;
});
2.此解决方案将创建12个查询但将保存内存:
$categories = Category::withCount('products')->latest('products_count')->take(10)->get();
$categories->transform(function($category) {
$category->products = Product::whereHas('categories', function($q) use($category) {
$q->where('id', $category->id);
})
->take(10)
->get();
return $category;
});
另一答案
这是DB facade版本:
$tenPopularTags = DB::table('product_to_category')
->join('category', 'product_to_category.category_id', '=', 'category.id')
->select(DB::raw('count(product_to_category.category_id) as repetition, question_tag.tag_id'))
->groupBy('product_to_category.category_id')
->orderBy('repetition', 'desc')->take(10)
->get();
不过我喜欢@Alexey Mezenin这样做的方式。因为这是更清洁的方式已经定制了一点:
$tenCategories = Category::withCount('products')->orderBy('questions_count', 'DESC')->take(10)->get();
在我的项目博客中使用了帖子和类别关系,它都有效!
以上是关于如何在laravel eloquent查询中获得前10个类别列表的主要内容,如果未能解决你的问题,请参考以下文章
C#中,如何实现点击treeview父节点的文字达到展开改节点的效果?
Laravel,获得类似 Eloquent 使用查询生成器的结果