当我们使用数据表pdf按钮打印数据表时,无法获取pdf的数据表图像。它只显示空白数据而不是图像

时间:2019-07-03 11:36:15

标签: jquery

从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时,图像丢失(显示为空)。

0 个答案:

没有答案