gpt4 book ai didi

jquery - 数据表 1.10 : type = 'type' in render function

转载 作者:行者123 更新时间:2023-12-01 04:40:26 24 4
gpt4 key购买 nike

根据the docs ,当 columns.render 参数是一个函数时,它有四个参数,其中一个是 'type':

The type call data requested - this will be 'filter', 'display','type' or 'sort'.

我理解每个选项,除了类型是“类型”。我找不到任何有关类型参数何时或为何为“type”的信息。

有谁知道何时或为何 type = 'type'?它有什么用?

最佳答案

根据https://datatables.net/manual/data/orthogonal-data , type="type"是“类型检测数据” - 用于自动检测 column type 的数据.

/*{
"name": "Tiger Nixon",
"position": "System Architect",
"start_date": "1303682400",
"office": "Edinburgh"
}*/

{
data: 'start_date',
render: function ( data, type, row ) {
// If display or filter data is requested, format the date
if ( type === 'display' || type === 'filter' ) {
var d = new Date( data * 1000 );
return d.getDate() +'-'+ (d.getMonth()+1) +'-'+ d.getFullYear();
}

// Otherwise the data type requested (`type`) is type detection or
// sorting data, for which we want to use the integer, so just return
// that, unaltered
return data;
}
}

我认为当 type="type"时提供不同的数据通常没有用。

关于jquery - 数据表 1.10 : type = 'type' in render function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39102431/

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