以csv格式保存表格中的数据(使用Adobe Flash)
注意:这个需要使用Bottons扩展
该按钮创建了一个以逗号分隔的CSV文件,可以应用到电子表格和数据分析应用程序。
注意:这个按钮有很多限制
button().trigger()API
or key combination methods due to the security restrictions of Flash
The
csvHtml5Button
method provides much greater flexibility and thus button is considered to be sunsetted,
but is still provided for use with older browsers that do not support the APIs required for the
csvHtml5Button
button type.
这个操作需要 Adobe Flash
的支持。如果没有安装flash或者是禁用了,则不会显示此按钮。或者使用
csvHtml5Button
方式。使用
csvButton
按钮,将会自动在
csvHtml5Button
之间切换,这取决于浏览器的功能
这个按钮有以下选项配置:
名称 | 默认 |
---|---|
text |
CSV |
按钮上显示的文字,使用
buttons.buttons.textOption
配置显示的文字内容
或者 buttons.copy ,关于语言的配置参考
languageOption
|
|
className |
buttons-csv buttons-flash |
按钮的class名称,详情参见
buttons.buttons.classNameOption
|
|
action |
|
创建并保存一个cvs文件 | |
fieldSeparator |
, |
用逗号符来隔开数据复制到剪贴板中 | |
fieldBoundary |
" |
The character(s) used to enclose each field in the plain text representation of the table that is copied to the system's clipboard. This is automatically added at the start and end of each cell's data. | |
exportOptions |
{} |
选择性的导出数据,包括哪些列,行,排序或者过滤。 详细参考 方法,这里收集所需要的数据 | |
header |
true |
表头将包含在导出的数据中 | |
footer |
false |
表脚将包含在导出的数据中 | |
title |
* |
给创建文件的文件名,*代表替换成系统默认的标题标签。 | |
extension |
.csv |
给创建文件的文件名后缀。 | |
escapeChar |
" |
Character to use as the escape character for CSV data. This will be prefixed to any data found in the fields which matches that set by the fieldBoundary option. It is a configurable option as different applications can require different options - however the default matches RFC4180. |
Datatables初始化:试用 flash CSV按钮
$('#myTable').DataTable( { buttons: [ 'csvFlash' ] } );
Datatables初始化:使用
csvButton
,让浏览器自动选择
$('#myTable').DataTable( { buttons: [ 'csv' ] } );
Datatables初始化:使用 exportOptions
选项配置导出所有数据,不管过滤
$('#myTable').DataTable( { buttons: [ { extend: 'csvFlash', text: 'Copy all data', exportOptions: { modifier: { search: 'none' } } } ] } );
Translation from DataTables.net, with permission