BootStrap分页插件,自动加载table
自动生成分页,自动加载table
#只需要很少的代码就能实现自动填充和分页
#初始化表格和分页
$("#iplisttable").pagingTable({ json_url: "{% url 'attendence:ip_json'%}", pageSize: 2, pageNumber: 10, /*default 10*/ separator: "#" /*default #*/, callback: function(){console.log('this is callback...');} }); #version 2.1 changes: 1. 支持模板语法,指定分隔符,默认为 #
调整html结构,更符合一般的table结构
支持回调,在加载数据之后可以添加逻辑
支持自定义显示页码的个数,默认10个
#html结构范例:
<table id="iplisttable" class="table table-bordered table-hover table-striped"> <thead> <tr> <th width="20%">Name</th> <th width="20%">IP</th> <th width="20%">Action</th> </tr> </thead> <tbody> <tr pk="#ip#" template=1 style="display: none"> <td>#name#</td> <td>#ip#</td> <td> <a href="javascript:void(0)" onclick="delIP(this)" class="delip" style="cursor:pointer"> <span class="glyphicon glyphicon-floppy-remove"></span> <span>(#ip#)</span> </a> <a style="cursor:pointer;display:inline-block;margin-left:15px;"> <span class="glyphicon glyphicon-edit"></span> </a> </td> </tr> </tbody> </table>
#后台数据接口
def ip_json(request): pagesize = int(request.GET.get('pagesize', 10)) startindex = (int(request.GET.get('currentpage', 1)) - 1) * pagesize startindex = 0 if startindex < 0 else startindex endindex = startindex + pagesize totalRecords = EmployeeIP.objects.all().select_related().count() employeeips = EmployeeIP.objects.all().select_related()[startindex:endindex] data = [{"rownum": index + 1, "name": eip.employee.first_name + ' ' + eip.employee.last_name, "ip": eip.IP} for index, eip in enumerate(employeeips)] json_result = { "totalrecords": totalRecords, "data": data } return JsonResponse(json_result, safe=False)
版权声明:
1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。2、网站不提供资料下载,如需下载请到原作者页面进行下载。