【发布时间】:2018-06-27 12:18:15
【问题描述】:
我想用 Eloquent 创建产品过滤器。
我是这样开始的
$query = Product::whereHas('variants')
->with('variants')
->with('reviews')
$query = $this->addOrderConstraints($request, $query);
$products = $query->paginate(20);
在哪里
private function addOrderConstraints($request, $query)
{
$order = $request->input('sort');
if ($order === 'new') {
$query->orderBy('products.created_at', 'DESC');
}
if ($order === 'price') {
$query->orderBy('variants.price', 'ASC');
}
return $query;
}
但是,这不起作用,因为 Eloquent 正在像这样执行此查询(来自 Laravel DebugBar 的信息)
select count(*) as aggregate from `products` where exists
(select * from `variants` where `products`.`id` = `variants`.`product_id`)
select * from `products` where exists
(select * from `variants` where `products`.`id` = `variants`.`product_id`)
select * from `variants` where `variants`.`product_id` in ('29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '40', '41', '42', '43', '44', '45', '46', '47', '48')
等等
所以当我尝试使用按价格排序时,它只是明显的错误
Unknown column 'variants.price' in 'order clause' (SQL: select * from
`products` where exists (select * from `variants` where `products`.`id` =
variants.product_id) order by variants.price asc limit 20 offset 0)
那么是否可以使用 Eloquent 进行关系排序?
【问题讨论】:
-
你也可以试试
$query->orderByRaw('variants.price asc');。 -
确实没有改变查询,还是一样