我的数据表中有一个图像列,我正试图将其导出为pdf、csv和excel。它导出不带图像的表数据。当我打开导出的文件时,image列只是显示一条空记录。
var table = $('#myTable').DataTable({
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
"bInfo": false,
"order": [],
columnDefs: [{
targets: 'no-sort',
orderable: false
}],
dom: 'Bfrtip',
buttons: [{
extend: 'pdfHtml5',
exportOptions: {
stripHtml: false,
columns: [0, 1, 2, 3, 4, 5, 6]
}
}, {
extend: 'excel',
text: 'Excel',
exportOptions: {
stripHtml: false,
columns: [0, 1, 2, 3, 4, 5, 6]
}
}, {
extend: 'csv',
extend: 'csvHtml5',
text: 'CSV',
exportOptions: {
stripHtml: false,
columns: [0, 1, 2, 3, 4, 5, 6]
}
}]
})
暂无答案!
目前还没有任何答案,快来回答吧!