bootstraptable 分页循环_Bootstrap Table表格分页的使用及分页数据(Excel)导出

相关文档

步骤:

1:引入Bootstrap Table表格插件相关链接:这里直接拿来用就可以了,如果要下载到本地,可以自行去官网下载。

2:实现一个简单的表格和分页

如果不会可以参考这篇教程:

https://www.jianshu.com/p/b5ca011a0d9c

自己写了一个json格式的数据,进行模拟

4:可复制黏贴的代码:

导出表格

$('#mytab').bootstrapTable({

url: 'data1.json',

queryParams: "queryParams",

toolbar: "#toolbar",

sidePagination: "true",

striped: true, // 是否显示行间隔色

//search : "true",

uniqueId: "ID",

pageSize: "5",

pagination: true, // 是否分页

sortable: true, // 是否启用排序

columns: [{

field: 'id',

title: '登录名'

},

{

field: 'name',

title: '昵称'

},

{

field: 'price',

title: '角色'

},

{

field: 'price',

title: '操作',

width: 120,

align: 'center',

valign: 'middle',

formatter: actionFormatter,

},

]

});

//操作栏的格式化

function actionFormatter(value, row, index) {

var id = value;

var result = "";

result += "";

result += "";

result += "";

return result;

}

//打印表格

var idTmr;

function getExplorer() {

var explorer = window.navigator.userAgent;

//ie

if(explorer.indexOf("MSIE") >= 0) {

return 'ie';

}

//firefox

else if(explorer.indexOf("Firefox") >= 0) {

return 'Firefox';

}

//Chrome

else if(explorer.indexOf("Chrome") >= 0) {

return 'Chrome';

}

//Opera

else if(explorer.indexOf("Opera") >= 0) {

return 'Opera';

}

//Safari

else if(explorer.indexOf("Safari") >= 0) {

return 'Safari';

}

}

function method5(tableid) {

if(getExplorer() == 'ie') {

var curTbl = document.getElementById(tableid);

var oXL = new ActiveXObject("Excel.Application");

var oWB = oXL.Workbooks.Add();

var xlsheet = oWB.Worksheets(1);

var sel = document.body.createTextRange();

sel.moveToElementText(curTbl);

sel.select();

sel.execCommand("Copy");

xlsheet.Paste();

oXL.Visible = true;

try {

var fname = oXL.Application.GetSaveAsFilename("Excel.xls",

"Excel Spreadsheets (*.xls), *.xls");

} catch(e) {

print("Nested catch caught " + e);

} finally {

oWB.SaveAs(fname);

oWB.Close(savechanges = false);

oXL.Quit();

oXL = null;

idTmr = window.setInterval("Cleanup();", 1);

}

} else {

tableToExcel(tableid)

}

}

function Cleanup() {

window.clearInterval(idTmr);

CollectGarbage();

}

var tableToExcel = (function() {

var uri = 'data:application/vnd.ms-excel;base64,',

template = '

',

base64 = function(

s) {

return window.btoa(unescape(encodeURIComponent(s)))

},

format = function(s, c) {

return s.replace(/{(\w+)}/g, function(m, p) {

return c[p];

})

}

return function(table, name) {

if(!table.nodeType)

table = document.getElementById(table)

var ctx = {

worksheet: name || 'Worksheet',

table: table.innerHTML

}

window.location.href = uri + base64(format(template, ctx))

}

})()

data1.json

[

{

"id": 0,

"name": "高渐离",

"price": "$0"

},

{

"id": 1,

"name": "王昭君",

"price": "$1"

},

{

"id": 2,

"name": "安琪拉",

"price": "$2"

},

{

"id": 3,

"name": "蔡文姬",

"price": "$3"

},

{

"id": 4,

"name": "孙尚香",

"price": "$4"

},

{

"id": 5,

"name": "甄姬",

"price": "$5"

},

{

"id": 6,

"name": "妲己",

"price": "$6"

},

{

"id": 7,

"name": "米莱地",

"price": "$7"

},

{

"id": 8,

"name": "大乔",

"price": "$8"

},

{

"id": 9,

"name": "小巧",

"price": "$9"

},

{

"id": 10,

"name": "张亮",

"price": "$10"

},

{

"id": 11,

"name": "诸葛亮",

"price": "$11"

},

{

"id": 12,

"name": "韩信",

"price": "$12"

},

{

"id": 13,

"name": "兰陵王",

"price": "$13"

},

{

"id": 14,

"name": "貂蝉",

"price": "$14"

},

{

"id": 15,

"name": "后裔",

"price": "$15"

},

{

"id": 16,

"name": "黄忠",

"price": "$16"

},

{

"id": 17,

"name": "虞姬",

"price": "$17"

},

{

"id": 18,

"name": "程咬金",

"price": "$18"

},

{

"id": 19,

"name": "庄周",

"price": "$19"

},

{

"id": 20,

"name": "项羽",

"price": "$20"

}

]

导出当前选中页码的表格(这是第一页的数据)

原文作者:祈澈姑娘 技术博客:https://www.jianshu.com/u/05f416aefbe1

90后前端妹子,爱编程,爱运营,文艺与代码齐飞,魅力与智慧共存的程序媛一枚。

坚持总结工作中遇到的技术问题,坚持记录工作中所所思所见,对于博客上面有不会的问题,可以加入qq技术交流群聊:649040560。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Bootstrap Table 是一款基于 Bootstrap 框架的可扩展的、高性能的、响应式的表格插件。它提供了许多强大的功能和选项,能够帮助开发者快速地创建现代化的数据表格。 下面是 Bootstrap Table使用方法: 1. 引入必要的文件 在使用 Bootstrap Table 之前,需要先引入必要的文件,包括 jQueryBootstrapBootstrap Table 插件本身的 CSS 和 JS 文件。可以从官方网站上下载最新版本的插件文件。 ```html <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap-table/1.12.1/bootstrap-table.min.css"> <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script> <script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <script src="https://cdn.bootcss.com/bootstrap-table/1.12.1/bootstrap-table.min.js"></script> ``` 2. 创建表格 使用 Bootstrap Table 插件创建表格非常简单。只需要在 HTML 代码中加入一个 `<table>` 标签,并设置相应的 ID 属性即可。 ```html <table id="myTable"></table> ``` 3. 配置表格 在 JavaScript 代码中,可以使用 `bootstrapTable()` 方法来配置表格的各种属性和功能。下面是一些常用的配置选项: ```javascript $('#myTable').bootstrapTable({ url: 'data.json', // 数据源 columns: [ // 列定义 {field: 'id', title: 'ID'}, {field: 'name', title: '姓名'}, {field: 'age', title: '年龄'} ], pagination: true, // 是否启用分页 pageSize: 10, // 每页显示的记录数 search: true, // 是否启用搜索功能 showRefresh: true // 是否显示刷新按钮 }); ``` 4. 加载数据 通过设置 `url` 属性来指定数据源。数据源可以是一个 URL 地址,也可以是一个 JavaScript 对象数组。在数据加载完成后,表格会自动渲染出来。 ```javascript $('#myTable').bootstrapTable({ url: 'data.json', columns: [ {field: 'id', title: 'ID'}, {field: 'name', title: '姓名'}, {field: 'age', title: '年龄'} ] }); ``` 5. 其他功能 Bootstrap Table 还提供了许多其他的功能和选项,比如排序、过滤、编辑、导出等。开发者可以根据自己的需要来配置这些功能。 例如,要启用排序功能,只需要在 `bootstrapTable()` 方法中设置 `sortable` 属性为 `true`: ```javascript $('#myTable').bootstrapTable({ url: 'data.json', columns: [ {field: 'id', title: 'ID', sortable: true}, {field: 'name', title: '姓名', sortable: true}, {field: 'age', title: '年龄', sortable: true} ] }); ``` 以上就是 Bootstrap Table 的基本使用方法,通过这些简单的配置和操作,可以轻松地创建出强大的数据表格

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值