我正在为网格使用 jQuery dataTables ( http://www.datatables.net/ )。
但是,我的 json 格式与 dataTables 文档中包含的 json 示例不同。dataTables 是否可以解释我们 json 中的格式?
他们的json看起来像这样
{"aaData": [
[
"Trident",
"Internet Explorer 4.0",
"Win 95+",
"4",
"X"
],
[
"Trident",
"Internet Explorer 5.0",
"Win 95+",
"5",
"C"
]
]
}
我的 JSON 看起来像这样,不幸的是我无法将它更改为看起来像他们文档中包含的示例。
"allconfig": {
"card.inserted": {
"value": "Not Inserted",
"type": "enum",
"range": "",
"clone": false,
"archive": false,
"access": "R"
},
"card.cisproc": {
"value": "Processed",
"type": "string",
"range": "",
"clone": false,
"archive": false,
"access": "R"
}
}
}
这是我的 jQuery
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"sAjaxSource": 'json/test.json'
});
});