gpt4 book ai didi

jquery - 忽略数据表 CSV 导出中的第一列

转载 作者:行者123 更新时间:2023-11-30 23:54:55 24 4
gpt4 key购买 nike

我正在尝试根据 jQuery 数据表中的数据导出 CSV 文件,我希望它排除第一列数据,这是我当前的脚本。

 <script>
$(document).ready(function() {
$('#example').DataTable( {
dom: 'Bfrtip',
lengthMenu: [
[ 10, 25, 50, -1 ],
[ '10 rows', '25 rows', '50 rows', 'Show all' ]
],
buttons: [
'copy', 'csv', 'excel', 'pdf', 'print', 'pageLength'
]
} );
} );
</script>

我需要添加什么才能使其正常工作

最佳答案

您需要在 buttons 定义中使用 exportOptions

buttons: [
{
extend: 'pdf',
exportOptions: {
columns: [1,2,3,4] // indexes of the columns that should be printed,
} // Exclude indexes that you don't want to print.
},
{
extend: 'csv',
exportOptions: {
columns: [1,2,3,4]
}

},
{
extend: 'excel',
exportOptions: {
columns: [1,2,3,4]
}
}
]

关于jquery - 忽略数据表 CSV 导出中的第一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40912119/

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