bootstrap Table服务端处理分页(后台是.net)
程序员文章站
2022-04-09 21:47:49
本文实例为大家分享了bootstrap table服务端处理分页的具体代码,供大家参考,具体内容如下
要考虑函数可被可重复使用(调用),需要将可变化的变为参数封装起来...
本文实例为大家分享了bootstrap table服务端处理分页的具体代码,供大家参考,具体内容如下
要考虑函数可被可重复使用(调用),需要将可变化的变为参数封装起来
function hqcreattables(ob) { var option = { method: 'get', datatype: "json", striped: true,//设置为 true 会有隔行变色效果 undefinedtext: "空",//当数据为 undefined 时显示的字符 pagination: true, //分页 // paginationloop:true,//设置为 true 启用分页条无限循环的功能。 showtoggle: false,//是否显示 切换试图(table/card)按钮 showcolumns: false,//是否显示 内容列下拉框 pagenumber: 1,//如果设置了分页,首页页码 // showpaginationswitch:true,//是否显示 数据条数选择框 pagesize: 10,//如果设置了分页,页面数据条数 pagelist: [10, 20, 40], //如果设置了分页,设置可供选择的页面数据条数。设置为all 则显示所有记录。 paginationpretext: '?',//指定分页条中上一页按钮的图标或文字,这里是< paginationnexttext: '?',//指定分页条中下一页按钮的图标或文字,这里是> // singleselect: false,//设置true 将禁止多选 search: false, //显示搜索框 data_local: "zh-us",//表格汉化 sidepagination: "server", //服务端处理分页 queryparams: function (params) {//自定义参数,这里的参数是传给后台的,我这是是分页用的 return {//这里的params是table提供的 cp: params.offset,//从数据库第几条记录开始 ps: params.limit//找多少条 }; } } if (ob.url) { option.url = ob.url; } if (ob.columns) { option.columns = ob.columns; } $(ob.id).bootstraptable('destroy'); $(ob.id).bootstraptable(option); if (ob.data) { $(ob.id).bootstraptable('load', ob.data); } $(ob.id).on('load-success.bs.table', function (data) {//table加载成功后的监听函数 var $table = $(ob.id); var alltabledata = json.stringify($table.bootstraptable('getdata'));//获取表格的所有内容行 var obj = json.parse(alltabledata); console.log(obj) xstate.tablearr = obj; }); }
table加载成功写的函数,是因为我自己需要才写的。把table里的数据放在全局变量后,查询详细信息就不用再做ajax。
这个'load-success.bs.table'api我还有个问题,当这个table被多次load-success,这个函数就会被运行相同多次,对页面显示功能无影响。但自己还并不明白之前的table被$(ob.id).bootstraptable('destroy')销毁了,为什么还会被记入。
函数被调用的时候写入自己的参数,colums是第一行表头。
var tab = { id: '#table', url: '/healthrecords/selects', columns: columns } hqcreattables(tab);
.net的后台传的json也一定要有page值,rows是你的显示data,total:所有显示数据的条数。
[httpget] //get: healthrecords public jsonresult selects(healthrecordview m, int cp = -4, int ps = -5, string start = null, string end = null) { string sa = session["hid"].tostring(); m.hid = sa; string sqls = " select * from a where hid='" + m.hid + "' "; string sqlss = " select count(*) from a where hid='" + m.hid + "' "; if (!string.isnullorwhitespace(m.name)) { sqls += " and name like '%" + m.name + "%'"; sqlss += " and name like '%" + m.name + "%'"; } if (!string.isnullorwhitespace(start) && !string.isnullorwhitespace(end)) { sqls += " and r_time > '" + start + "' and r_time <'" + end + "'"; sqlss += " and r_time > '" + start + "' and r_time <'" + end + "'"; } sqls += " order by r_time desc "; if (cp != -4&& ps != -5) { sqls += " limit "+ cp + "," + ps + " "; } var arr = db.database.sqlquery<healthrecordview>(sqls).toarray(); int rolenames = db.database.sqlquery<int>(sqlss).firstordefault(); return json(new { page = cp, rows = arr, total = rolenames }, jsonrequestbehavior.allowget); }
如上,一次生成不要传对后台数据不要限制更多条件的table已经生成了
如何当你有查询条件的时候,应该怎么做?
当你看都到图片的时候,你就明白了,只需要在调用函数的时候,在url里增加你的查询条件。
上一篇: jquery 一键复制到剪切板的实例