我有一个从服务器返回的以下格式的json消息。我使用jquery数据表来显示表中的数据。我在尝试使用jquery数据表时遇到了一些错误。请告诉我在jquery数据表配置中出错的地方,以显示以下json格式。 jquery数据表的配置以及json数据如下:
$(function () {
$('#dataTable').dataTable( {
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"aaData": [
{
"links": [
{
"rel": "self", // the first column data which should be displayed as link
"href": "http://localhost:8080/16"
}
],
"Country": "INDIA",
"state": "Karnataka",
"city": "Bangalore",
"cityId": 16
},
{
"links": [
{
"rel": "self",
"href": "http://localhost:8080/17"
}
],
"Country": "INDIA",
"state": "Tamilnadu",
"city": "Chennai",
"cityId": 17
}
]
});
答案 0 :(得分:1)
对jquery datatables文档进行一些了解,帮助我找到了解决方案。诀窍是使用mData,然后将列映射到json中的属性。下面提到了相同的链接:
http://datatables.net/release-datatables/examples/server_side/object_data.html