Laravel搜索多个字段

时间:2017-02-28 12:00:05

标签: laravel laravel-5

我目前在我的网站上有搜索功能,我需要它搜索3个字段 - appid,mobilenumber,email。

现在,一旦用户在搜索框中输入数据,它就会搜索所有3但不起作用。

使用GET收集数据。

这是我的查询

http://www.example.com?id=1&searchall=07853637362

import { Component, Input } from '@angular/core';

@Component({
   selector: 'panel-component', 
   template: `<p>{{name}}</p> 
              <div *ngFor="let d of data">
                 <p>{{d}}</p>
              </div>
             `
})
class PanelComponent {
   @Input('name') name: string;
   @Input('data') data: Array<string>;
}

所以我需要它来搜索每个字段,直到它找到正确的字段值。

3 个答案:

答案 0 :(得分:3)

$mobile = INPUT::get('searchall');
$email = INPUT::get('searchall');
$appid = INPUT::get('searchall');

$data = DB::table('leads')
->when($mobile, function($query) use ($mobile){
                return $query->orWhere('MobilePhone', $mobile);
            })

            ->when($email, function($query) use ($email){
                return $query->orWhere('Email', $email);
            })

            ->when($appid, function($query) use ($appid){
                return $query->orWhere('AppID', $appid);
            })->get();

答案 1 :(得分:0)

要搜索数据,请尝试使用like

->when($mobile, function($query) use ($mobile){
     return $query->where('MobilePhone', 'like', '%'. $mobile . '%');
})

要实际搜索每个字段,请使用orWhere

$keywords = Input::get('searchall');
$data = DB::table('leads')
->where('mobilephone', '=', $keywords)
->orWhere('email', '=', $keywords)
->orWhere('AppID', '=', $keywords)
->get();

答案 2 :(得分:0)

我不明白为什么你需要使用3个变量来自用户的相同值,所以以下是简化版本:

$searched = Input::get('searchall');

$matched = DB::table('leads')
->where('MobilePhone', $searched)
->orWhere('Email', $searched)
->orWhere('AppID', $searched)
->get();