从DataTable以PDF格式下载数据时...数据表中存在的图像丢失。因此,如何获取我的PDF而不丢失数据表中的图像
buttons: [{
extend: 'pdfHtml5',
orientation: 'landscape',
pageSize: 'LEGAL',
exportOptions : {
stripHtml: false
}
},'copy', 'excel', 'pdf']
$(document).ready(function() {
$('#datatable').DataTable();
//Buttons examples
var table = $('#datatable-buttons').DataTable({
lengthChange: false,
buttons: [{
extend: 'pdfHtml5',
orientation: 'landscape',
pageSize: 'LEGAL',
exportOptions : {
stripHtml: false
}
},'copy', 'excel', 'pdf']
});
table.buttons().container()
.appendTo('#datatable-buttons_wrapper .col-md-6:eq(0)');
} );
从数据表下载PDf时,图像丢失(显示为空)。