【TP5】關於get請求的模糊搜尋
阿新 • • 發佈:2019-01-03
author:咔咔
wechat:fangkangfk
在之前我們使用了ajax請求的方式做了一次模糊搜尋,下面是連結地址
https://blog.csdn.net/fangkang7/article/details/85233164
今天我們寫一個get請求方式的模糊搜尋
注意點:
前端點選搜尋後,搜尋條件依然需要在
前端顯示條件是需要做是否存在判斷
後臺之需要查詢資料返回給前端即可
點選查詢會直接將引數帶到地址後邊請求伺服器
樣式:
後臺程式碼:
/** * banner列表 * @return array */ public function index() { $param = $this->request->param(); $where = []; if(!empty($param['vt_id'])){ $where['vt_id'] = $param['vt_id']; } if(!empty($param['b_title'])){ $where['b_title'] = ['like',"%".$param['b_title']."%"]; } if(!empty($param['vt_id']) && !empty($param['b_targetType']) && !empty($paran['b_title'])){ $where = '1 = 1'; } // banner列表 $bannerList = $this->bannerModel->bannerList($where); // 型別 $videoTypeList = Db::name($this->videoTypeModel->tableName)->select(); if(!empty($param)){ $this->assign('param',$param); } $this->assign([ 'subject' => $videoTypeList, 'bannerList' => $bannerList ]); return $this->fetch(); }