将带有变量的闭包传递给 Laravel 查询构建器中的 where 方法
Posted
技术标签:
【中文标题】将带有变量的闭包传递给 Laravel 查询构建器中的 where 方法【英文标题】:Passing a Closure with a variable to where method in Laravel query builder 【发布时间】:2020-12-22 12:07:56 【问题描述】:根据 Laravel 文档,“或”条件可以通过将闭包作为第一个参数传递给 orWhere 方法进行分组:
$users = DB::table('users')
->where('votes', '>', 100)
->orWhere(function($query)
$query->where('name', 'Abigail')
->where('votes', '>', 50);
)
->get();
我想要的是在查询中使用一个变量,它看起来像:
$q = $request->get('query');
$users = DB::table('users')
->where('votes', '>', 100)
->orWhere(function($query)
$query->where('name', $q)
->where('votes', '>', 50);
)
->get();
我试图将它作为第二个参数传递,例如:
$q = $request->get('query');
$users = DB::table('users')
->where('votes', '>', 100)
->orWhere($q, function($query, $q)
$query->where('name', $q)
->where('votes', '>', 50);
)
->get();
但它不起作用,有什么帮助吗?
【问题讨论】:
【参考方案1】:您需要使用use()
函数将数据传递给closer
参考链接In php, what is a closure and why does it use the "use" identifier?
$q = $request->get('query');
$users = DB::table('users')
->where('votes', '>', 100)
->orWhere(function ($query) use($q) // use function to pass data inside
$query->where('name', $q)
->where('votes', '>', 50);
)
->get();
【讨论】:
以上是关于将带有变量的闭包传递给 Laravel 查询构建器中的 where 方法的主要内容,如果未能解决你的问题,请参考以下文章