我想使用pdfhtml导出数据表 这是我的代码
$(document).ready(function() {
$('#example').DataTable( {
dom: 'Bfrtip',
buttons: [ {
extend: 'pdfHtml5',
text: 'PDF with image'
} ]
} );
} );
和结果导出pdf像这样
答案 0 :(得分:3)
您可以使用customize
回调来更改生成的PDF的布局。它没有很好地记录(但是,我猜)但是请参阅PDFMake definition object docs以了解命名和对象结构,并查看this answer(由我)作为一个非常简单的示例。
AFAIK没有选项可以让你强制整个内容的中心(即一种docDefinition.content.align
或类似内容)但你可以否决页面边距和列宽。
$('#example').DataTable({
dom: 'Bfrtip',
buttons: [ {
extend: 'pdfHtml5',
text: 'PDF with image',
customize: function(doc) {
//pageMargins [left, top, right, bottom]
doc.pageMargins = [ 150, 20, 150, 20 ];
}
}]
});
这将在每个页面上有效地创建150px的左/右边距,使表格居中。现在您只需要找出最适合您需求的边距尺寸。在该过程中,您可能还需要强制导出列的宽度:
$('#example').DataTable( {
dom: 'Bfrtip',
buttons: [{
extend: 'pdfHtml5',
text: 'PDF with image',
customize: function(doc) {
doc.content.forEach(function(item) {
if (item.table) {
// Set width for 3 columns
item.table.widths = [100, 40, '*']
}
});
}
}]
});
我正在迭代content
数组,因为我们无法确定哪个索引包含table
属性。以上只是将导出的三列布局设置为100px
,40px
和"其余的"宽度。如果要将宽度调整为内容,请使用'auto'
。请注意,如果您的item.table.widths
与表中的列数不完全匹配,则导出将失败。
无论如何 - 通过定义pageMargin
并且可能稍微调整一些列的宽度,您应该能够非常轻松地创建居中的PDF。