作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最佳答案
这在一定程度上取决于过滤器的提交方式,但您可以执行以下两项操作之一(可能还有更多...):
public function listCars(Request $request)
{
$cars = Car::when($request->get('make'), function ($query, $make) {
$query->where('make', $make);
})
->when($request->get('model'), function ($query, $model) {
$query->where('model', $model);
})
->...
->get();
// do what you have to do
}
所以您基本上将查询构建器调用包装在 when($value, $callback)
中,它只会执行 $callback
如果$value
评估为真。当您使用 $request->get('parameter')
检索未设置的参数时,它将返回 null 并且不执行回调。但要小心,如果 $value
是0
它也不会执行回调。所以请确保您没有将其作为索引。
除此之外,你也可以做同样的事情,但用一些不那么 Eloquent 表达......
public function listCars(Request $request)
{
$query = Car::query();
if($request->filled('make')) {
$query->where('make', $request->get('make'));
}
if($request->filled('model')) {
$query->where('model', $request->get('model'));
}
// some more filtering, sorting, ... here
$cars = $query->get();
// do what you have to do
}
关于php - 这个多重可选过滤器的最佳解决方案是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51394497/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!