1

我有包含列名和数据的 json 文件。我能够在 jsp 中使用带有硬编码列名的数据填充数据表。但我也想从 json 中读取列名。

有谁知道如何做到这一点?

下面是json文件和我的js代码。

json文件

{
"aaData": [

    [
     "Name",
     "Description",
     "Date"
    ],
    [
        "Ronaldo",
        "Brazil",
        "1983"
    ],
    [
        "Rooney",
        "England",
        "1999"
    ]
]

}

js代码

$(document).ready(function() {
    $('#genericTable').dataTable( {
        "bProcessing": true,
        "sAjaxSource": "resources/json/" + key + ".json"
    }).columnFilter({ sPlaceHolder: "head:after",
        aoColumns: [ { type: "text" },
                     { type: "text" },
                     null
                   ]
    }); 
});
4

0 回答 0