首页 > 代码库 > datatables 配套bootstrap样式使用小结(2) ajax篇

datatables 配套bootstrap样式使用小结(2) ajax篇

距离上一篇有点时间了,周末做了伴郎参加了一个土豪同学的婚礼。

上一篇是介绍一下基本的用法,基本的原理是取出所有的数据,然后调用$.datatables(option)方法格式化,这种方法显然不太科学,所以ajax方式是必须的。

首先上个效果图。

技术分享 

js和css引用方面依旧没有变化,详见上篇。

Html页面:

@{    ViewBag.Title = "DataTableServer";}@{    //两种身份    List<SelectListItem> discriminatorTypes = new List<SelectListItem>()    {        new SelectListItem(){Text="身份类型",Valuehttp://www.mamicode.com/= ""},        new SelectListItem(){Text = "学生",Value ="http://www.mamicode.com/Student"},        new SelectListItem(){Text="导师",Value="http://www.mamicode.com/Instructor"}    };}<div class="hidden" id="hidden_filter">    @* 把需要搜索的条件放到hidden里面,在table格式化完成的时候直接调用$.html()赋值,免去了在js拼接标签的麻烦 *@    <div class="row" style="margin-right:0;">        @Html.DropDownList("disType", discriminatorTypes, new { @class = "form-control input-small", style = "width:120px" })        @Html.TextBox("name", "", new { @class = "form-control input-small", style = "width:150px", placeholder = "请输入姓名" })        <button id="go_search" class="btn btn-default">搜索</button>    </div></div><div class="panel panel-default">    <div class="panel-heading">        <div class="panel-title">            Ajax 异步获取数据        </div>    </div>    <div class="panel-body">        <table id="table_server" class="table table-bordered table-striped table-hover">            <thead>                <tr>                    <th>ID</th>                    <th>姓名</th>                    <th>入职时间</th>                    <th>身份</th>                    <th>操作</th>                </tr>            </thead>        </table>    </div></div>

页面定义上table里面只需要定义thead即可。

js:

<script type="text/javascript">        $(function () {            var tablePrefix = "#table_server_";            $("#table_server").dataTable({              serverSide: true,//分页,取数据等等的都放到服务端去                processing: true,//载入数据的时候是否显示“载入中”                pageLength: 10,//首次加载的数据条数                ordering: false,//排序操作在服务端进行,所以可以关了。                ajax: {//类似jquery的ajax参数,基本都可以用。                    type: "post",//后台指定了方式,默认get,外加datatable默认构造的参数很长,有可能超过get的最大长度。                    url: "@Url.Action("GetPeoples")",                  dataSrc: "data",//默认data,也可以写其他的,格式化table的时候取里面的数据                    data: function (d) {//d 是原始的发送给服务器的数据,默认很长。                        var param = {};//因为服务端排序,可以新建一个参数对象                        param.start = d.start;//开始的序号                        param.length = d.length;//要取的数据的                        var formData = http://www.mamicode.com/$("#filter_form").serializeArray();//把form里面的数据序列化成数组                        formData.forEach(function (e) {                            param[e.name] = e.value;                        });                        return param;//自定义需要传递的参数。                    },                },                columns: [//对应上面thead里面的序列                    { data: "id", },//字段名字和返回的json序列的key对应                    { data: "name", },                    {                        //Student 没有hireDate                        data: function (e) {                            if (e.hireDate) {//默认是/Date(794851200000)/格式,需要显示成年月日方式                                return new Date(Number(e.hireDate.replace(/\D/g, ‘‘))).toLocaleDateString();                            }                            return "空";                        }                    },                    { data: "discriminator", },                    {                        data: function (e) {//这里给最后一列返回一个操作列表                            //e是得到的json数组中的一个item ,可以用于控制标签的属性。                            return ‘<a class="btn btn-default btn-xs show-detail-json"><i class="icon-edit"></i>显示详细</a>‘;                        }                    }                ],                initComplete: function (setting, json) {                    //初始化完成之后替换原先的搜索框。                    //本来想把form标签放到hidden_filter 里面,因为事件绑定的缘故,还是拿出来。                    $(tablePrefix + "filter").html("<form id=‘filter_form‘>" + $("#hidden_filter").html() + "</form>");                },                language: {                  lengthMenu: ‘<select class="form-control input-xsmall">‘ + ‘<option value="http://www.mamicode.com/5">5</option>‘ + ‘<option value="http://www.mamicode.com/10">10</option>‘ + ‘<option value="http://www.mamicode.com/20">20</option>‘ + ‘<option value="http://www.mamicode.com/30">30</option>‘ + ‘<option value="http://www.mamicode.com/40">40</option>‘ + ‘<option value="http://www.mamicode.com/50">50</option>‘ + ‘</select>条记录‘,//左上角的分页大小显示。                    processing: "载入中",//处理页面数据的时候的显示                    paginate: {//分页的样式文本内容。                        previous: "上一页",                     next: "下一页",                     first: "第一页",                     last: "最后一页"                    },                    zeroRecords: "没有内容",//table tbody内容为空时,tbody的内容。                    //下面三者构成了总体的左下角的内容。                    info: "总共_PAGES_ 页,显示第_START_ 到第 _END_ ,筛选之后得到 _TOTAL_ 条,初始_MAX_ 条 ",//左下角的信息显示,大写的词为关键字。                    infoEmpty: "0条记录",//筛选为空时左下角的显示。                    infoFiltered: ""//筛选之后的左下角筛选提示(另一个是分页信息显示,在上面的info中已经设置,所以可以不显示),                }            });            //$("#table_server_filter input[type=search]").css({ width: "auto" });//右上角的默认搜索文本框,不写这个就超出去了。        });        $(document).on("submit", "#filter_form", function () {            return false;        });        $(document).on("click", "#go_search", function () {            $("#table_server").DataTable().draw();//点搜索重新绘制table。        });        $(document).on("click", ".show-detail-json", function () {//取出当前行的数据
            alert(JSON.stringify($("#table_server").DataTable().row($(this).parents("tr")).data()));        });    </script>

上面主要包含两个点,一个是自定义右上角的filter对象,要在table初始化完成的回调函数里面加载方法;第二个是调用DataTable API对象的draw方法,实现重新加载。

最后想说的是标签的绑定事件要放到document或者其他父标签上,因为元素是在datatable方法加载完成之后才显示出来的。

datatables 配套bootstrap样式使用小结(2) ajax篇