主頁 > 知識(shí)庫 > ThinkPHP整合datatables實(shí)現(xiàn)服務(wù)端分頁的示例代碼

ThinkPHP整合datatables實(shí)現(xiàn)服務(wù)端分頁的示例代碼

熱門標(biāo)簽:深圳外呼系統(tǒng)收費(fèi) 電話機(jī)器人危險(xiǎn)嗎 長沙crm外呼系統(tǒng)業(yè)務(wù) 專業(yè)電話機(jī)器人批發(fā)商 400電話申請方法收費(fèi) 400電話辦理福州市 離石地圖標(biāo)注 江蘇外呼電銷機(jī)器人報(bào)價(jià) 南寧高頻外呼回?fù)芟到y(tǒng)哪家好

最近做東西有一個(gè)需求,因?yàn)閿?shù)據(jù)量很大,在這里我決定使用datatables的服務(wù)端分頁,同時(shí)還需要傳遞查詢條件到服務(wù)端。在網(wǎng)上搜索的大部分文章都感覺有些誤差,于是自己封裝了一下,主要配置/工具為:

服務(wù)端:php(使用thinkphp)

頁面樣式來自于H-ui框架(datatables版本為1.10.0)

主要修改(databases)配置項(xiàng)為:

1) bProcessing:true 使用ajax源

2) serverSide:true 使用服務(wù)端分頁

3) createdRow:function(){} 回調(diào)函數(shù),用于添加事件或類名

4) aoColumns 用于處理、顯示數(shù)據(jù),其中render屬性用于自定義列

1.datatables 的js代碼為:

$('.table-sort').dataTable({
 processing: true,
  serverSide: true,
  ajax: {
   "url":"{:U('Msg/index')}",
   "data":function(d){ //額外傳遞的參數(shù)
    d.mintime = $('#logmin').val();
    d.maxtime = $('#logmax').val();
   }
  },
  bStateSave: true,//狀態(tài)保存
  aLengthMenu : [20, 30, 50, 100, 150],
  bProcessing : true,
  bAutoWidth: false,
  bFilter : true, //是否啟動(dòng)過濾、搜索功能
  bInfo : true, //是否顯示頁腳信息,DataTables插件左下角顯示記錄數(shù) 
  createdRow: function ( row, data, index ) {
   $(row).addClass('text-c');
   $('#count').html(data.recordsFiltered);
  },
  aoColumns: [
   {
    "sClass": "text-center",
    "data": "id",
    "render": function (data, type, full, meta) {
     return 'input type="checkbox" name="select" value="' + data + '" />';
    },
    "bSortable": false
   },
   { "mData": "id" },
   { "mData": "fromnickname"},
   { "mData": "content" },
   { "mData": "msgtype" },
   { "mData": "time"},
   {
    "sClass": "text-center",
    "data": "id",
    "render": function (data, type, full, meta) {
     html = 'a title="查看" href="javascript:;" rel="external nofollow" rel="external nofollow" onclick="show(`查看`,`__URL__/show/id/'+ data + '`,``,`610`)" class="ml-5" style="text-decoration:none">i class="Hui-iconfont">#xe6df;查看/i>/a>';
     html += 'a style="text-decoration:none" class="ml-5" onClick="signDel(this,'+ data +')" href="javascript:;" rel="external nofollow" rel="external nofollow" title="刪除">i class="Hui-iconfont">#xe6e2;/i>刪除/a>';
     return html;
    },
    "bSortable": false
   }
  ]
});

2.服務(wù)端方面:

控制器:
接收參數(shù)如下:
draw    前端傳過來的值,原值返回,用于驗(yàn)證
mintime、maxtime 自定義參數(shù)(時(shí)間)
search.value  datatables搜索框參數(shù),用于查詢篩選
order.0.column  要排序的單元格(從0開始,字段需要自己設(shè)置)
order.0.dir   排序(升序、降序)
start    起始條數(shù)(第幾條開始)
length    查詢長度
返回的數(shù)據(jù)如下:
draw    返回前端傳過來的值
recordsTotal  記錄總條數(shù)
recordsFiltered  條件篩選后的記錄總條數(shù)
data    服務(wù)端查詢的數(shù)據(jù)
返回?cái)?shù)據(jù)形式:json

3.服務(wù)端后端完整代碼如下:

1)控制器代碼:

public function index()
{
 if(IS_AJAX){
  $list = D('Msg')->getData(I('get.'));
  $this->ajaxReturn($list);
 }
 $this->display();
}

2) Model層代碼:(*其中,dealTime方法主要用于處理時(shí)間段)

public function getData($data)
{
 //獲取Datatables發(fā)送的參數(shù) 必要
 $draw = $data['draw']; //這個(gè)值直接返回給前臺(tái)
 //獲取時(shí)間區(qū)間
 $timeArr['mintime'] = $data['mintime'];
 $timeArr['maxtime'] = $data['maxtime'];
 $where = $this->dealTime($timeArr);
 //搜索框
 $search = trim($data['search']['value']); //獲取前臺(tái)傳過來的過濾條件 
 if(strlen($search) > 0) {
  $where['id|fromnickname|content|msgtype'] = array('like','%'.$search.'%');
 }
 //定義查詢數(shù)據(jù)總記錄數(shù)sql
 $recordsTotal = $this->count();
 //定義過濾條件查詢過濾后的記錄數(shù)sql
 $recordsFiltered = $this->where($where)->count();
 //排序條件
 $orderArr = [1=>'id', 2=>'fromnickname', 3=>'content', 4=>'msgtype', 5=>'time'];
 //獲取要排序的字段
 $orderField = (empty($orderArr[$data['order']['0']['column']])) ? 'id' : $orderArr[$data['order']['0']['column']];
 //需要空格,防止字符串連接在一塊
 $order = $orderField.' '.$data['order']['0']['dir'];
 //按條件過濾找出記錄
 $result = [];
 //備注:$data['start']起始條數(shù) $data['length']查詢長度
 $result = $this->field('id,fromnickname,content,msgtype,time')
     ->where($where)
     ->order($order)
     ->limit(intval($data['start']), intval($data['length']))
     ->select();
 //處理數(shù)據(jù)
 if(!empty($result)) {
  foreach ($result as $key => $value) {
   $result[$key]['time'] = date("Y-m-d H:i:s",$value['time']);
   $result[$key]['recordsFiltered'] = $recordsFiltered;
  }
 }
 //拼接要返回的數(shù)據(jù)
 $list = array(
  "draw" => intval($draw),
  "recordsTotal" => intval($recordsTotal),
  "recordsFiltered"=>intval($recordsFiltered),
  "data" => $result,
 );
 return $list;
}

3) 實(shí)現(xiàn)自定義ajax搜索

1. 在WdatePicker中添加onpicked回調(diào)函數(shù)
2. 執(zhí)行table.fnFilter(),其中table為datatables對(duì)象

以WdatePicker插件為例(input框類似,綁定onchange事件即可):

input type="text" onfocus="WdatePicker({maxDate:'#F{ $dp.$D(\'logmax')||\'%y-%M-%d'}', onpicked:function(){table.fnFilter();}})" name="mintime" id="logmin" class="input-text Wdate" style="width:120px;">

3. datatables中ajax屬性中data屬性定義額外要傳遞的參數(shù)

例子:

ajax: {
  "url":"{:U('Msg/index')}",
  "data":function(d){ //額外傳遞的參數(shù)
   d.mintime = $('#logmin').val();
   d.maxtime = $('#logmax').val();
  }

4) 代碼截圖:

a. html頁面

 

b.js部分

 

以上這篇ThinkPHP整合datatables實(shí)現(xiàn)服務(wù)端分頁的示例代碼就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • Thinkphp3.2.3整合phpqrcode生成帶logo的二維碼
  • ThinkPHP整合百度Ueditor圖文教程
  • Thinkphp整合微信支付功能
  • thinkphp整合微信支付代碼分享
  • thinkPHP5框架整合plupload實(shí)現(xiàn)圖片批量上傳功能的方法
  • ThinkPHP 整合Bootstrap Ajax分頁樣式
  • ThinkPHP上使用多說評(píng)論插件的方法
  • ThinkPHP3.2.2的插件控制器功能簡述
  • 基于ThinkPHP5.0實(shí)現(xiàn)圖片上傳插件
  • Thinkphp和onethink實(shí)現(xiàn)微信支付插件
  • ThinkPHP使用Smarty第三方插件方法小結(jié)
  • thinkPHP框架整合tcpdf插件操作示例

標(biāo)簽:株洲 曲靖 南昌 太原 白酒營銷 興安盟 南京 濱州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ThinkPHP整合datatables實(shí)現(xiàn)服務(wù)端分頁的示例代碼》,本文關(guān)鍵詞  ThinkPHP,整合,datatables,實(shí)現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ThinkPHP整合datatables實(shí)現(xiàn)服務(wù)端分頁的示例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于ThinkPHP整合datatables實(shí)現(xiàn)服務(wù)端分頁的示例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章