我有包含列名和数据的json文件。我能够在jsp中使用带有硬编码列名的数据填充数据表。但是我想从json中读取列名。
有谁知道怎么做?
下面是json文件和我的js代码。
Json文件
{
"aaData": [
[
"Name",
"Description",
"Date"
],
[
"Ronaldo",
"Brazil",
"1983"
],
[
"Rooney",
"England",
"1999"
]
]
}
js code
$(document).ready(function() {
$('#genericTable').dataTable( {
"bProcessing": true,
"sAjaxSource": "resources/json/" + key + ".json"
}).columnFilter({ sPlaceHolder: "head:after",
aoColumns: [ { type: "text" },
{ type: "text" },
null
]
});
});