91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Laravel框架中怎么使用paginate實現分頁

發布時間:2021-07-19 14:43:39 來源:億速云 閱讀:234 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關Laravel框架中怎么使用paginate實現分頁,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

1、運行原生sql

public function getList($data){
//獲取前端傳過來的參數
  $user = $data['userId'];
  $office = $data['officeId'];
  $key = $data['oneKeySearch'];
//進行模糊搜索和聯合查詢
  $where = 'and 1=1 ';
  if($key!=null) {
    $where.= ' and ( a.code like "%' . $key . '%"';
    $where.= ' or b.name like "%' . $key . '%"';
    $where.= ' or c.name like "%' . $key . '%")';
  }
//對前端傳回的字段進行判斷,如果不為空則執行條件查詢
  if($user!=null){
    $user='and a.userId='.$user;
  }
  if($office!=null){
    $office='and a.officeId='.$office;
  }
//自定義原生sql語句,%s可以傳參數到sql語句中,格式如下:
  $sqlTmp=sprintf('select a.id,a.code,a.attendanceRate,a.statisticTime,
            b.`realName` as userName,c.`name` as officeName
            from xxxa1
            LEFT JOIN xxx2 b ON a.userId=b.id
            LEFT JOIN xxx3 c ON a.officeId=c.id
    where a.deleted_at is null and 1=1 %s %s %s ORDER BY a.code
    ', $where,$office,$user);
//執行SQL語句
  $results = DB::select($sqlTmp);
//返回結果
  return $results;
}

2、運行查詢構建器

public function getList($data){
//獲取前端傳過來的參數
  $user = $data['userId'];
  $office = $data['officeId'];
  $key = $data['oneKeySearch'];
/*
 * 1、表格使用別名:直接是 “表名 as table1" ,(下面是xxx1 as a)
 * 2、左連接:DB::table('表1')
 *        ->leftJoin('表2', '表1.id', '=', '表2.外鍵關聯')
 * 3、因為使用了軟刪除,所以在查詢的時候要加上 ->whereNull('a.deleted_at')
 * 4、使用 DB::raw方法創建一個原生表達式,寫進要查詢的字段名稱
 *    ->select(DB::raw('a.id,a.code,b.`realName` as userName,c.`name` as officeName'))
 *5、使用orderBy進行排序
 *
 */
     $data=DB::table('biz_attendance_sta as a')
       ->leftJoin('sys_user as b', 'b.id', '=', 'a.userId')
       ->leftJoin('sys_office as c', 'c.id', '=', 'a.officeId')
      ->select(DB::raw('a.id,a.code,a.attendanceRate,a.statisticTime,
              b.`realName` as userName,c.`name` as officeName'))
       ->whereNull('a.deleted_at')
       ->orderBy('a.code', 'desc');
 //使用 if(!empty(xxx)){},來判斷前端傳過來的參數是否為空,不為空則執行條件查詢
     if(!empty($user)){
       $data = $data->where( 'a.userId',$user);
     }
    if(!empty($office)){
      $data = $data->where( 'a.officeId',$office);
    }
 //使用 if(!empty(xxx)){},來判斷前端傳過來的參數是否為空,不為空則執行模糊搜索和聯合查詢
    if (!empty($key)) {
      $data = $data->where(function ($query) use ($key) {
        $query->where('a.code', 'like', "%{$key}%")
          ->orWhere('b.name', 'like', "%{$key}%")
          ->orWhere('c.name', 'like', "%{$key}%");
      });
    }
//使用->paginate(10)進行分頁
    $results=$data ->paginate(10);
    return $results;
}

看完上述內容,你們對Laravel框架中怎么使用paginate實現分頁有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

涞源县| 武义县| 涿州市| 泗洪县| 昭通市| 梁河县| 榕江县| 大渡口区| 吉安县| 逊克县| 化德县| 阆中市| 新乐市| 茌平县| 哈密市| 通州市| 衡阳县| 融水| 阿坝| 和林格尔县| 兰西县| 吉林省| 辽阳县| 寿光市| 昌都县| 越西县| 六枝特区| 开平市| 鹰潭市| 延津县| 苏州市| 西城区| 辰溪县| 新巴尔虎右旗| 东源县| 海门市| 中宁县| 郓城县| 广宗县| 万安县| 鹤庆县|