国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開(kāi)發(fā) > JS > 正文

layui數(shù)據(jù)表格實(shí)現(xiàn)重載數(shù)據(jù)表格功能(搜索功能)

2024-05-06 16:53:42
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

layui數(shù)據(jù)表格實(shí)現(xiàn)重載數(shù)據(jù)表格功能,以搜索功能為例

  • 加載數(shù)據(jù)表格
  • 實(shí)現(xiàn)搜索功能和數(shù)據(jù)表格重載
  • 全部代碼

加載數(shù)據(jù)表格

按照l(shuí)ayui官方文檔示例

HTML部分

<table id="demo" lay-filter="test"></table>

JavaScript部分

var table = layui.table; //執(zhí)行渲染table.render({ elem: '#demo' //指定原始表格元素選擇器(推薦id選擇器) ,height: 315 //容器高度 ,cols: [{}] //設(shè)置表頭 //,…… //更多參數(shù)參考右側(cè)目錄:基本參數(shù)選項(xiàng)});

官方的文檔已經(jīng)把方法說(shuō)的很明白了,下面展示實(shí)例用法(HTML部分依照官方文檔,不用修改)

 

layui.use('table', function () {    var table = layui.table;    table.render({      // 表格容器ID      elem: '#ware_info'      // 表格ID,必須設(shè)置,重載部分需要用到      , id: 'tableOne'      // 數(shù)據(jù)接口鏈接      , url: "異步請(qǐng)求數(shù)據(jù)接口地址"      // 附加參數(shù),post token      , where: {'token': token}      , method: 'post'      // 分頁(yè) curr起始頁(yè),groups連續(xù)顯示的頁(yè)碼,默認(rèn)每頁(yè)顯示的條數(shù)      , page: {        layout: ['limit', 'count', 'prev', 'page', 'next', 'skip']        , curr: 1        , groups: 6        , limit: 20      }      , cols: [[        {fixed: 'lift', title: '序號(hào)', type: 'numbers', minWidth: 60, align: 'center',}        , {field: 'part', title: '類型', align: 'center', width: 120}        , {field: 'uid', title: 'UID', align: 'center', width: 200, sort: true, event: 'details', style: 'color: #0066CC; cursor:pointer;'}        , {field: 'quantity', title: '數(shù)量', width: 120, align: 'center', event: 'setNumber', style: 'color: #0066CC; cursor:pointer;'}        , {field: 'description', title: '描述', align: 'center', minWidth: 80}        , {field: 'disable', title: '狀態(tài)', sort: true, width: 80, align: 'center',}      ]]    });  });

實(shí)現(xiàn)搜索功能和數(shù)據(jù)表格重載

1、接口需求
需要有一個(gè)可以接收搜索條件并返回固定格式j(luò)son文件的數(shù)據(jù)接口。

2、注意要提前導(dǎo)入layui的依賴模塊

JavaScript部分代碼如下:

// 執(zhí)行搜索,表格重載  $('#do_search').on('click', function () {    // 搜索條件    var send_name = $('#send_name').val();    var send_data = $('#send_data').val();    table.reload('tableOne', {      method: 'post'      , where: {        'token': token,        'send_name': send_name,        'send_data': send_data,      }      , page: {        curr: 1      }    });  });

全部代碼

HTML部分

<table class="layui-hide" id="ware_info" lay-filter="tableOne"></table>

JavaScript部分

// 加載表格  layui.use('table', function () {    var table = layui.table;    table.render({      // 表格容器ID      elem: '#ware_info'      // 表格ID,必須設(shè)置,重載部分需要用到      , id: 'tableOne'      // 數(shù)據(jù)接口鏈接      , url: "你的異步數(shù)據(jù)接口地址"      // 附加參數(shù),post token      , where: {'token': token}      , method: 'post'      // 分頁(yè) curr起始頁(yè),groups連續(xù)顯示的頁(yè)碼,默認(rèn)每頁(yè)顯示的條數(shù)      , page: {        layout: ['limit', 'count', 'prev', 'page', 'next', 'skip']        , curr: 1        , groups: 6        , limit: 20      }      , cols: [[        {fixed: 'lift', title: '序號(hào)', type: 'numbers', minWidth: 60, align: 'center',}        , {field: 'part', title: '類型', align: 'center', width: 120}        , {field: 'uid', title: 'UID', align: 'center', width: 200, sort: true, event: 'details', style: 'color: #0066CC; cursor:pointer;'}        , {field: 'quantity', title: '數(shù)量', width: 120, align: 'center', event: 'setNumber', style: 'color: #0066CC; cursor:pointer;'}        , {field: 'description', title: '描述', align: 'center', minWidth: 80}        , {field: 'disable', title: '狀態(tài)', sort: true, width: 80, align: 'center',}      ]]    });    // 執(zhí)行搜索,表格重載    $('#do_search').on('click', function () {      // 搜索條件      var send_name = $('#send_name').val();      var send_data = $('#send_data').val();      table.reload('tableOne', {        method: 'post'        , where: {          'csrfmiddlewaretoken': token,          'send_name': send_name,          'send_data': send_data,        }        , page: {          curr: 1        }      });    });

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持VeVb武林網(wǎng)。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到JavaScript/Ajax教程頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 临海市| 睢宁县| 乌拉特前旗| 胶南市| 延吉市| 河池市| 奉化市| 曲沃县| 钟祥市| 高州市| 五河县| 高清| 安岳县| 萍乡市| 五大连池市| 壤塘县| 博客| 九江县| 平果县| 若羌县| 福建省| 永嘉县| 寿阳县| 太仆寺旗| 东平县| 山东省| 随州市| 洞头县| 天峻县| 亚东县| 阿巴嘎旗| 宁强县| 禹城市| 饶平县| 广安市| 临汾市| 车险| 自贡市| 奉节县| 德庆县| 万载县|