您好,登錄后才能下訂單哦!
本人在實際開發中,根據產品經理需求,在iwebshop框架原有的后臺訂單篩選功能里增加商戶名稱模糊篩選!
開發思路:首先要明白篩選的數據在數據庫中的位置,對要篩選的字段進行模糊查詢!
開發主要注意:因為iwebshop后臺訂單篩選功能是寫在封裝好的一個類下面 order/order_class.php里面,所以sql查詢后的遍歷和sql本身的條件,一定要注意書寫正確!
實際開發書寫代碼思路講解:
if(isset($search['name']) && isset($search['keywords'])) { $name = IFilter::act($search['name'], 'string'); $keywords = IFilter::act($search['keywords'], 'string'); if ($name && $keywords) { switch ($name) { case "seller_name": { //執行查詢訂單管理商戶名稱 $sellerObj = new IQuery('seller'); $sellerObj->where="true_name like '%".$keywords."%'"; $sellerRow =$sellerObj->find(); $sellerArray =[]; //遍歷開始 foreach ($sellerRow as $key=>$val){ $sellerArray[] = $val['id']; } //因為涉及到單個模糊查詢和多個模糊條件 if(is_array($sellerArray)){ $where .= $sellerRow ?" and o.seller_id in (".join(',',$sellerArray).")":"and null"; }else{ $where .= $sellerRow ?" and o.seller_id = ".$sellerArray[0]:"and null"; } } break; default: $where .= " and o.".$name." = '".$keywords."'"; break; } } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。