gpt4 book ai didi

php - 拉维尔 : advanced search form query

转载 作者:行者123 更新时间:2023-12-05 08:58:04 26 4
gpt4 key购买 nike

我有一个高级搜索表单,可以使用 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)。

最佳答案

你需要改变:

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();

关于php - 拉维尔 : advanced search form query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26972963/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com