搜索功能仅使用一个参数

Search functionality only uses one parameter

:)

我为想要浏览职位发布的用户实现了搜索功能,它看起来像这样:

https://i.stack.imgur.com/wGcW6.png

它的代码如下所示:

public function index(Request $request)
    {
if ($word = $request->get('s')) {

                $postsQuery = $postsQuery
                    ->where('titel', 'like', "%{$word}%")
                    ->where('isActive', 1)
                    ->where('is_Canceled', 0)
                    ->orWhere('id', '=', $word);

            }

            if ($location = $request->get('standort') and $request->get('standort') != 'alle') {
                $postsQuery = $postsQuery->where('Standort', $location);
            }

            if ($dep = $request->get('abteilung') and $request->get('abteilung') != 'alle') {
                $postsQuery = $postsQuery->where('abteilung_name', $dep);
            }

            $posts = $postsQuery->orderBy('titel')->get();

            if ($posts->count() == 0) {

                return view('posts.overview', ['posts' => $posts, 'standorts' => $standorts, 'abteilungs' => $abteilungs])
                    ->withErrors(['error' => 'Es wurde kein Treffer gefunden, versuchen Sie es mit anderen Suchparametern']);
            }

            return view('posts.overview', ['posts' => $posts, 'standorts' => $standorts, 'abteilungs' => $abteilungs]);
        }

我的问题是只搜索了一个参数。因此,当用户输入搜索词“IT”+ 位置 (Standort) 或部门 (Abteilung) 时,只会搜索搜索词。

我在 2 小时内尝试了无数不同的东西,但我就是无法让它工作。如果您有任何建议,请告诉我!

编辑:当我省略 orWhere('id', '=', $word) 时,它可以工作,但我必须保留它。但我不能将其更改为正常 where(),因为那样 returns 没有匹配项.

你做到了:

where a and b and c or d

但是你想要:

where (a and b and c) or d

https://laravel.com/docs/8.x/queries#logical-grouping

所以粗略地说,你应该努力构建这样的东西:

$posts = Post::query()
    ->where(function (Builder $query) {
        $query->where('clauseA', '=', 1)
            ->where('clauseB', '=', 2)
            ->where('clauseC', '=', 3);
    })
    ->orWhere('id', '=', $word)
    ->get();
public function index(Request $request)
    {
if ($word = $request->get('s')) {

                if (is_numeric($word)) {
                    $postsQuery = $postsQuery
                        ->where('id', '=', $word)
                        ->where('isActive', 1)
                        ->where('is_Canceled', 0);

                }  else {
                    $postsQuery = $postsQuery
                        ->where('titel', 'like', "%{$word}%")
                        ->where('isActive', 1)
                        ->where('is_Canceled', 0);
                }

            }

            if ($location = $request->get('standort') and $request->get('standort') != 'alle') {
                $postsQuery = $postsQuery->where('Standort', $location);
            }

            if ($dep = $request->get('abteilung') and $request->get('abteilung') != 'alle') {
                $postsQuery = $postsQuery->where('abteilung_name', $dep);
            }

            $posts = $postsQuery->orderBy('titel')->get();

            if ($posts->count() == 0) {

                return view('posts.overview', ['posts' => $posts, 'standorts' => $standorts, 'abteilungs' => $abteilungs])
                    ->withErrors(['error' => 'Es wurde kein Treffer gefunden, versuchen Sie es mit anderen Suchparametern']);
            }

            return view('posts.overview', ['posts' => $posts, 'standorts' => $standorts, 'abteilungs' => $abteilungs]);
        }

这不是一个优雅的解决方案,但我只是检查搜索词是数字还是单词,然后继续执行相应的条件和搜索功能