利用bootstrap table表格将后端接口数据展示在表格中

利用bootstrap table表格将后端接口数据展示在表格中


首先展示项目案例:
表格中表头是在html中写死,其余的数据都是对应表头加载出来的。

bootstrap表格后端接受数据案例
bootstrap表格后端接受数据案例

 

下图为模拟出来的后端传的数据,数据中的key值需要与写死在表头中的data-field一一对应:

加载数据内容打印
加载数据内容打印

 

下面是所有完整的代码,重点以及主要的解释已经在代码内进行注释:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>Page Title</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
//此处引入bootstrap css文件
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
//此处引入bootstrap table css文件
    <link href="https://unpkg.com/bootstrap-table@1.13.4/dist/bootstrap-table.min.css" rel="stylesheet">
</head>
<body>
<table class="table table-condensed"
          id="table"
          data-toggle="table"
          data-toolbar="#toolbar"
          data-height="400"
          data-search="true" >
          <thead class="thead-light">
            <tr>
              <th data-field="id">ID</th>
              <th data-field="name">Item Name</th>
              <th data-field="price">Item Price</th>
              <th data-field="price1">Item Price</th>
              <th data-field="price2">Item Price</th>
              <th data-field="price3">Item Price</th>
            </tr>
          </thead>
        </table>
//此处引入jquery文件,此文件在本地,需自行下载引入
        <script src="./js/jquery-1.12.4.min.js"></script>
//此处需引入bootstrap table 的js文件
        <script src="https://unpkg.com/bootstrap-table@1.13.4/dist/bootstrap-table.min.js"></script>
        <script>
        // 此处方法模拟打印随机后端数据,打印的结构见上面,加载数据内容打印
          function randomData() {
                var startId = ~~(Math.random() * 100)
                var rows = []
                for (var i = 0; i < 10; i++) {
                    rows.push({
                        id: startId + i,
                        name: 'test' + (startId + i),
                        price: '$' + (startId + i),
                        price1: '$' + (startId + i),
                        price2: '$' + (startId + i),
                        price3: '$' + (startId + i)
                    })
                }
                console.log(rows)
                return rows;
            }

            
          $(function() {
            // 核心内容,bootstrapTable自带方法,将randomdata中的数据加载如表格中,数据中的key值需要与写死在表头中的data-field一一对应
            $('#table').bootstrapTable('append',randomData())
            // 下面一行代码是在表格中增加样式,让所有内容居中
              $("td,th").addClass("text-center");
          })
        </script>
</body>
</html>

 

Bootstrap Table 可以通过 AJAX 请求后端获取数据并在表格显示。下面是一些实现的步骤: 1. 在 HTML 页面引入 Bootstrap Table 插件的 CSS 和 JS 文件。 ```html <link rel="stylesheet" href="https://cdn.bootcdn.net/ajax/libs/bootstrap-table/1.18.3/bootstrap-table.min.css"> <script src="https://cdn.bootcdn.net/ajax/libs/bootstrap-table/1.18.3/bootstrap-table.min.js"></script> ``` 2. 创建一个 HTML 表格,并定义每一列的名称和字段名。 ```html <table id="table"> <thead> <tr> <th data-field="id">ID</th> <th data-field="name">Name</th> <th data-field="price">Price</th> </tr> </thead> </table> ``` 3. 初始化表格,并配置 AJAX 请求参数。 ```javascript $(function () { $('#table').bootstrapTable({ url: '/path/to/server', // 后端 API 地址 method: 'get', // 请求方法 dataType: 'json', // 返回数据类型 pagination: true, // 启用分页功能 sidePagination: 'server', // 分页位置,此处为服务器端分页 queryParams: function (params) { // 自定义查询参数 return { limit: params.limit, // 每页显示的记录数 offset: params.offset, // 当前页码 search: params.search // 搜索关键字 }; }, responseHandler: function (res) { // 自定义响应处理函数 return { total: res.total, // 总记录数 rows: res.data // 当前页记录列表 }; }, columns: [{ field: 'id', title: 'ID' }, { field: 'name', title: 'Name' }, { field: 'price', title: 'Price' }] }); }); ``` 4. 在后端编写 API 接口,接收请求参数并返回 JSON 格式的数据。 ```php // 获取请求参数 $limit = $_GET['limit']; $offset = $_GET['offset']; $search = $_GET['search']; // 查询数据库,获取数据列表和总记录数 // ... // 返回 JSON 格式的数据 echo json_encode([ 'total' => $total, 'data' => $data ]); ``` 这样就可以通过 AJAX 请求后端获取数据并在表格显示了。需要注意的是,后端 API 必须返回 JSON 格式的数据数据格式要与响应处理函数返回的格式一致。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值