gpt4 book ai didi

jquery datatables - 从 json 获取列

转载 作者:行者123 更新时间:2023-12-03 22:59:54 25 4
gpt4 key购买 nike

在 jquery Datatables 中是否可以使用服务器端脚本定义列?我需要这样的东西 enter image description here

必须从服务器加载带有日期的列。然后列数可以变化。

最佳答案

我想我已经找到了你要找的东西

我将粘贴一些代码并发布一个类似 Q' 的链接,您将在其中获得更多信息...

$.ajax( {
"url": 'whatever.php',
"success": function ( json ) {
json.bDestroy = true;
$('#example').dataTable( json );
},
"dataType": "json"
} );

其中 json 是这样的

{

"aaData": [
[ "2010-07-27 10:43:08", "..."], [ "2010-06-28 17:54:33", "..."],
[ "2010-06-28 16:09:06", "..."], [ "2010-06-09 19:15:00", "..."]
] ,

"aaSorting": [
[ 1, "desc" ]
],

"aoColumns": [
{ "sTitle": "Title1" },
{ "sTitle": "Title2" }
]

}

这里是原始线程的链接

Column definition via JSON array (ajax)

关于jquery datatables - 从 json 获取列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8665309/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com