Laravel:高级搜索表单查询

Posted

技术标签:

【中文标题】Laravel:高级搜索表单查询【英文标题】:Laravel : advanced search form query 【发布时间】:2015-01-14 09:08:39 【问题描述】:

我有一个高级搜索表单,可以使用 Laravel 从数据库中过滤掉结果。数据已正确过滤,但我要求用户能够使用相同的文本框(在高级表单中)按名字或姓氏进行过滤。我尝试 orWhere 以确保它使用名字或姓氏过滤名称字段,但 orWhere 不考虑其他过滤器。我使用的代码如下:

DB::table('mytable')
                ->where(function($query) use ($name, $degree_s, $specialty_s, $city_s, $state_s, $lundbeck_id_s) 

                if ($name)
                    $query->where('first_name', 'like', "$name%")->orWhere('last_name', 'like', "$name%"); # this is whats causing the issue
                if ($specialty_s)
                    $query->where('primary_specialty', $specialty_s);
                if ($city_s)
                    $query->where('city', $city_s);
                if ($state_s)
                    $query->where('state_province', $state_s);
                if ($lundbeck_id_s)
                    $query->where('customer_master_id', $lundbeck_id_s);
                if ($degree_s)
                    $query->where('primary_degree', $degree_s);
                )

                ->select('id', 'first_name','last_name')

添加 orWhere 子句会导致查询不使用其他条件(如 city_s 或 state_s)。

【问题讨论】:

【参考方案1】:

你需要改变:

if ($name)
   $query->where('first_name', 'like', "$name%")->orWhere('last_name', 'like', "$name%");

进入:

if ($name) 
   $query->where(function($q) use ($name) 
         $q->where('first_name', 'like', "$name%")->orWhere('last_name', 'like', "$name%");
   );

让 Laravel 添加括号,这样它就可以按您的预期工作。

编辑

当然你不需要在这里用闭包来包装所有东西,所以最好的解决方案是:

<?php

$query = DB::table('mytable')->select('id', 'first_name', 'last_name');

if ($name) 
    $query->where(function ($q) use ($name) 
        $q->where('first_name', 'like', "$name%")
            ->orWhere('last_name', 'like', "$name%");
    );

if ($specialty_s) 
    $query->where('primary_specialty', $specialty_s);

if ($city_s) 
    $query->where('city', $city_s);

if ($state_s) 
    $query->where('state_province', $state_s);

if ($lundbeck_id_s) 
    $query->where('customer_master_id', $lundbeck_id_s);

if ($degree_s) 
    $query->where('primary_degree', $degree_s);


$data = $query->get();

【讨论】:

非常感谢 Marcin,这是我实施的解决方案 分页呢?【参考方案2】:

我会稍微不同地构建查询。

$q = DB::table('mytable')->select(['id', 'first_name', 'last_name']);

if(!empty($name))

    $q->where(function($query)use($name)
        $query->where(('first_name', 'like', "$name%")
              ->orWhere('last_name', 'like', "$name%");
    );


if(!empty($specialty_s) $q->where('primary_specialty', $specialty_s);

到目前为止....等等。

终于

根据您的需要返回q-&gt;get()$q-&gt;paginate(30)

【讨论】:

它不会按预期工作。它将创建查询where A or B AND C 你也忘了在你的闭包中添加use ($name) 今天过得很糟糕......再次:)

以上是关于Laravel:高级搜索表单查询的主要内容,如果未能解决你的问题,请参考以下文章

laravel中具有多对多关系的高级搜索

具有多个输入的Laravel高级查询

具有自动完成功能的高级搜索表单

Extjs - 高级搜索表单

JIRA的使用介绍(四)- 高级搜索(JQL)

高级 Google 搜索引擎查询的 URL 格式