文章來自:www.jb51.net/article/171535.htm
微信學習群:Laravel技術交流群
好記性不如爛筆頭,學習php開發也不能懶,作筆記是一種學習的好習慣!
關注以下公眾號,可獲取兩套視訊教程:【laravel7.x 從入門到核心架構講解】 與 【Laravel高階實戰教程42講】 ,助你提升你的php學習技能。最後祝你學習愉快!
在資料搜尋時最常見的就是呼叫同一個方法查詢,而查詢的欄位卻可能是其中一個或其中的幾個欄位一起組合查詢。
例如:對列表的搜尋,基本上都是幾個欄位隨意組合搜尋。那麼在model裡就需要判斷有那個欄位組合,怎麼組合。
網上找了很久,Laravel群裡也問了幾個,都說沒有寫過,於是自己寫個吧。話不多說,見程式碼:
function findByParam($param = array())
{
$select = new Customer();
if (isset($param['name']) && '' != $param['name'])
{
$select = $select->where('customer.name', '=', $param['name']);
}
if (isset($param['phone']) && '' != $param['phone'])
{
$select = $select->where('customer.phone', '=', $param['phone']);
}
if (isset($param['email']) && '' != $param['email'])
{
$select = $select->where('customer.email', '=', $param['email']);
}
if (isset($param['tel']) && '' != $param['tel'])
{
$select = $select->where('customer.tel', '=', $param['tel']);
}
if (isset($param['qq']) && '' != $param['qq'])
{
$select = $select->where('customer.qq', '=', $param['qq']);
}
if (isset($param['IDCard']) && '' != $param['IDCard'])
{
$select = $select->where('customer.IDCard', '=', $param['IDCard']);
}
$customers = $select->leftJoin("member", function ($join)
{
$join->on("customer.memberID", "=", "member.id");
})
->get(array(
'customer.id',
'customer.name',
'customer.sex',
'customer.tel',
'customer.phone',
'customer.address',
'customer.email',
'customer.qq',
'customer.headPic',
'customer.birthday',
'customer.IDCard',
'customer.enable',
'customer.memberID',
'customer.IDCard',
'customer.info',
'member.name as mname',
'member.discount'
));
return json_encode($customers);
呼叫的時候,controller裡只需要接收這些欄位,無論它是否有值,直接加入到$param陣列中查詢就OK,例如:
function anyFindbyparam()
{
$name = Input::get('name');
$tel = Input::get('tel');
$phone = Input::get('phone');
$email = Input::get('email');
$qq = Input::get('qq');
$IDCard = Input::get('IDCard');
$customer = new Customer();
$customers = $customer->findByParam(array(
'name' => $name,
'tel' => $tel,
'phone' => $phone,
'email' => $email,
'qq' => $qq,
'IDCard' => $IDCard
));
return $customers;
}
當然,這只是本人的一個例子,用的表和欄位就是那些,你如果要參照上面的例子,完全可以換成你自己的表與欄位哈。
本作品採用《CC 協議》,轉載必須註明作者和本文連結