bootstrap table接收json问题

发布于 2022-09-06 01:32:16 字数 523 浏览 21 评论 0

文档中是直接拿json

<table data-toggle="table" data-url="data1.json">
    <thead>
        <tr>
            <th data-field="id">Item ID</th>
            <th data-field="name">Item Name</th>
            <th data-field="price">Item Price</th>
        </tr>
    </thead>
</table>

但是我的json格式如下

{   "code": "0",
    "data": {"messages":[{"id":1,"name":"Mark","price":"10"},....]}
}    

请问该如何修改?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

街角卖回忆 2022-09-13 01:32:16

html:

<table data-toggle="table" >
     <thead>
         <tr>
            <th data-field="id">Item ID</th>
            <th data-field="name">Item Name</th>
            <th data-field="price">Item Price</th>
        </tr>
    </thead>
    <tbody>
       <tr ng-repeat = "td in itemList.data.messages">
            <td data-field="id">{{li.id}}</td>
            <td data-field="name">{{li.name}}</td>
            <td data-field="price">{{li.price}}</td>
        </tr>
    </tbody>
</table>

js:

itemList:{   
    "code": "0", 
    "data": {
        "messages":[
        {"id":1,"name":"Mark","price":"10"},....]
        }
    }
走野 2022-09-13 01:32:16

bootstrap-table参数中有responseHandler: function(res){ return res; }函数。

此函数的作用就是可以先对获取到的服务器数据先进行处理、格式化数据之后再进行表格的渲染。
以你取到的数据为例,初始化配置中添加如下参数:

responseHandler: function (res) {
    return res.data.messages;
}

就可以了

友谊不毕业 2022-09-13 01:32:16

<!DOCTYPE html>
<html lang="en">
<head>

<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="bootstrap/bootstrap-table.css">
<link rel="stylesheet" type="text/css" href="bootstrap/bootstrap-table.min.css">

</head>
<body>

</body>
<script type="text/javascript" src="jquery/jquery.min.js"></script>
<script type="text/javascript" src="bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="bootstrap/bootstrap-table.min.js"></script>
<script type="text/javascript" src="bootstrap/bootstrap-table-zh-CN.js"></script>
<script type="text/javascript">
$(function () {
var oTable = new TableInit();
oTable.Init();
});

var TableInit = function () {
var oTableInit = new Object();
//初始化Table
oTableInit.Init = function () {
$('#tb_departments').bootstrapTable({
url: 'data.json',
method: 'get',
toolbar: '#toolbar',
striped: true,
cache: false,
uniqueId: "id",
columns: [{
field: 'id',
title: 'Item ID',
align:'center'
}, {
field: 'name',
title: 'Item Name',
align:'center'
},{
field: 'price',
title: 'Item Price',
align:'center'
}],responseHandler:function(data){
return data.data.messages
}
});
};
// //得到查询的参数
// oTableInit.queryParams = function (params) {
// var temp = { //这里的键的名字和控制器的变量名必须一直,这边改动,控制器也需要改成一样的
// limit: params.limit, //页面大小
// offset: params.offset, //页码
// departmentname: $("#txt_search_departmentname").val(),
// statu: $("#txt_search_statu").val()
// };
// return temp;
// };
return oTableInit;
}

</script>
</html>图片描述

[1]: /img/bVWX3l

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文