Bootstrap-table的使用

bootstrap-table在线引用地址:

<link href="https://cdn.bootcdn.net/ajax/libs/bootstrap-table/1.18.1/bootstrap-table.min.css" rel="stylesheet">
  1. ajax请求方式
    html:
<table data-toggle="table" id="table"></table>
$.ajax({
        url: "请求地址",
        data: {
          //发往服务端的数据
        },
        type: "post",
        success: function (msg) {
          $("#table").bootstrapTable("destroy");
          $("#table").bootstrapTable({
            classes: "table table-bordered table-hover",
            width: 300,
            height: 500,
            pageSize: 10,
            pageNumber: 1,
            Pagelist: [],
            data: msg,//服务端传回的数据,要和下面的columns中的field名字一一对应
            cache: false,
            striped: true,
            pagination: true,
            sidePagination: "client",
            search: true,
            showRefresh: false,
            showExport: false,
            showFooter: true,
            clickToSelect: true,
            columns: [
              {
                field: "productName",
                title: "器材名称",
                align: "center",
              },
              {
                field: "orderdetailsNum",
                title: "销售数量",
                align: "center",
              },
              {
                field: "orderdetailsPrice",
                title: "价格",
                align: "center",
              },
            ],
          });
        },
      });
  1. 直接请求方式
    这种方式直接将请求地址写在table标签
 <table data-toggle="table" id="table" data-method="post" data-url:"请求地址"></table>
          $("#table").bootstrapTable("destroy");
          $("#table").bootstrapTable({
            classes: "table table-bordered table-hover",
            width: 300,
            height: 500,
            pageSize: 10,
            pageNumber: 1,
            Pagelist: [],
            cache: false,
            striped: true,
            pagination: true,
            sidePagination: "client",
            search: true,
            showRefresh: false,
            showExport: false,
            showFooter: true,
            clickToSelect: true,
            columns: [
              {
                field: "productName",
                title: "器材名称",
                align: "center",
              },
              {
                field: "orderdetailsNum",
                title: "销售数量",
                align: "center",
              },
              {
                field: "orderdetailsPrice",
                title: "价格",
                align: "center",
              },
            ],
          });

服务端传回的数据,一定要和下面的columns中的field名字一一对应

相关文章

Bootstrip HTML 查询搜索常用格式模版 &lt;form class=&...
如何在按钮上加红色数字 您可以使用Bootstrap的badge组件来在...
要让两个按钮左右排列,你可以使用 Bootstrap 的网格系统将它...
是的,可以将status设置为布尔类型,这样可以在前端使用复选...
前端工程师一般用的是Bootstrap的框架而不是样式,样式一般自...
起步导入:<linkrel="stylesheet"href="b...