gpt4 book ai didi

数据表 TableTools - 保存 CSV 时是否可以只包含可见列?

转载 作者:行者123 更新时间:2023-12-04 16:27:17 25 4
gpt4 key购买 nike

我使用 Datatables 的 TableTools 插件在保存 CSV 时做了一些测试。

我注意到它可以保存一切。它不在乎您是否过滤了行或是否隐藏了某些列。

有没有办法只保存可见列中的数据?

最佳答案

您想使用 mColumns定义您的 buttons 时.

文档中的一个示例:

$(document).ready( function () {
$('#example').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
{
"sExtends": "csv",
"sButtonText": "Special columns",
"mColumns": [ 0, 1, 4 ]
},
{
"sExtends": "csv",
"sButtonText": "Visible columns",
"mColumns": "visible"
}
]
}
} );
} );

这定义了两个将导出到 CSV 文件的按钮。第一个,标记为 Special columns , 只会导出列 0,1,4 .第二个按钮,标记为 Visible columns将导出所有可见的列。
mColumns参数在文档中是这样描述的:

The parameter can either be a string with a value of 'all', 'visible', 'hidden' or 'sortable' - or an array of integers with the column indexes to be exported.



此功能在 1.10 版本中并不是新功能。它也可以在 older version 中找到,如果你还没有升级。

关于数据表 TableTools - 保存 CSV 时是否可以只包含可见列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23484036/

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