我在项目中构建过滤功能。
我有一个过滤选项"显示最新","显示最早的"和一堆其他选项。我找到了一种如何实现条件where子句的方法,但似乎并不是条件orderBy类。
我的条件where子句如下所示:
var emailTo = ConfigurationManager.AppSettings["eROCSendTo"].Replace(';', ',');
有没有办法用 - > orderBy呢?
更新
$query->where(function($query) use ($request){
if( ! empty($request->input('prices')) ){
$opts = $request->prices;
$query->where('price_id', $opts[0]);
}
})
我怎么能以雄辩的方式做到这一点?
答案 0 :(得分:1)
当然,你可以这样做:
if ($request->input('id_desc')) {
$query = $query->orderBy('id', 'DESC');
}
或者你可以这样做:
$columns = ['id','name',]; // here define columns you allow for sorting
$orderBy = ['ASC', DESC'];
$column = $request->input('order_by_column');
$type = $request->input('order_by_type');
if (!in_array($column, $columns)) {
$column = 'id';
}
if (!in_array($type , $orderBy )) {
$type = 'ASC';
}
$query = $query->orderBy($column, $type);
修改强>
使用您的代码:
$query = Auction::where('end_date', '>', Carbon::now() )
->where('locale', $locale)
->where('sold', 0)
->where(function($query) use ($request){
if( ! empty($request->input('prices')) ){
$opts = $request->prices;
$query->where('price_id', $opts[0]);
}
});
if ($request->input('id_desc')) {
$query = $query->orderBy('id', 'DESC');
}
return $query->paginate(8);