以下是我的数据表配置示例
{
"dom" : "rltip",
"processing" : true,
"serverSide" : false,
"order" : [ [ 1 , "desc" ] ],
"searching" : false,
data: [
{ "column-a" : "Sample Data A" , "column-b" : 10 , "column-c" : "Blah Blah" },
{ "column-a" : "Sample Data B" , "column-b" : 5 , "column-c" : "Blah Blah" },
{ "column-a" : "Sample Data C" , "column-b" : 38 , "column-c" : "Blah Blah" }
],
"columnDefs" : [
{
"targets" : 0,
"orderable" : false,
"data" : "column-a"
},
{
"targets" : 1,
"orderable" : false,
"data" : "column-b"
},
{
"targets" : 2,
"orderable" : true,
"className" : "title",
"data" : "column-c"
}
]
}
我想格式化显示的数据,但是在排序和其他后端相关的东西上,我想使用原始的未格式化数据。
重要提示:我必须在客户端(javascript)执行此操作。
我已经在 columnDefs 上尝试了渲染函数回调,但它似乎无效。
"render" : function( data , type , row ) {
if ( type === "sort" )
return data;
// format data here
return data; // This is a formatted data
}
我的意思是“它似乎不起作用”是排序被打破,它将考虑格式化数据,而不仅仅是原始数据。
我发现这篇旧的相关文章,但它似乎不再适用于较新版本的datatables.net
我使用的是 1.10.15
版本答案 0 :(得分:4)
在{em>类型中多次调用render function并使用不同的值。如果您将未格式化的数据仅设置为排序类型,那么您将错过排序相关类型的其他数据,例如类型。而是处理 type display 的情况,并返回 type 中任何其他值的未格式化数据。
"render" : function( data , type , row ) {
if ( type === "display" )
{
// format data here
return data; // This is a formatted data
}
return data; // This is a unformatted data
}