gpt4 book ai didi

javascript - 当我在 angular2 中将表格样式化为 pdf 时如何打印 html 格式?

转载 作者:行者123 更新时间:2023-11-27 23:17:57 25 4
gpt4 key购买 nike

这是在我尝试实现时,我想将生成的数据导出到 html 表,但我认为样式已经消失,我如何在我的 html 表看起来像这样时打印整洁的表:

<button (click)="print()">print</button>

<div id="print-section">
<div class="row">
<div class="col-md-12">
<ba-card title="Result" baCardClass="with-scroll table-panel">
<!-- Hasil -->
<div class="table-responsive">
<table class="table">
<tr>
<td>No</td>
<td>Kode Claim</td>
<td>Paid/Not Paid</td>
<td>Kode Service</td>
<td>Tanggal</td>
<td>Nomor Nota</td>
<td>Kode Produk</td>
<td>Kerusakan</td>
<td>Biaya</td>
<td>Transport</td>
<td>Valid</td>
</tr>
<tr *ngFor="let claimReports of claimReport; let i=index" >
<td>{{i + 1}}</td>
<td>{{claimReports.KODE_CLAIM}}</td>
<td>{{claimReports.Paid}}</td>
<td colspan="11">
<tr *ngFor="let dt of claimReports['DETAILS']; let a=index">
<td>{{dt.Kode_Service}}</td>
<td>{{dt.Tanggal_Service | date: 'dd/MM/yyyy'}}</td>
<td>{{dt.Nomor_Nota}}</td>
<td>{{dt.Kode_Produk}}</td>
<td>{{dt.Kerusakan}}</td>
<td>{{dt.Biaya}}</td>
<td>{{dt.Transport}}</td>
<td>{{dt.Valid}}</td>
</tr>
</td>
</tr>
</table>
</div>
<!-- End Hasil -->
</ba-card>
</div>
</div>
</div>

这是 app.component.ts :

  print(): void {
let printContents, popupWin;
printContents = document.getElementById('print-section').innerHTML;
popupWin = window.open('', '_blank', 'top=0,left=0,height=100%,width=auto');
popupWin.document.open();
popupWin.document.write(`
<html>
<head>
<title>Print tab</title>
</head>
<body onload="window.print();window.close()">${printContents}</body>
</html>`
);
popupWin.document.close();
}

这是 HTML 的样子: enter image description here

它好像没有格式化,我怎样才能像 html 一样打印出来?或者至少我可以让 table 整洁,而且我不希望在打印时显示 url

更新:我用 bootstrap css 更新了我的代码,所以我的代码在我的 app.component.ts 中看起来像这样

  print(): void {
let printContents, popupWin;
printContents = document.getElementById('print-section').innerHTML;
popupWin = window.open('', '_blank', 'top=0,left=0,height=100%,width=auto');
popupWin.document.open();
popupWin.document.write(`
<html>
<head>
<title>Print tab</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body onload="window.print();window.close()">${printContents}</body>
</html>`
);
popupWin.document.close();
}

这里是打印结果: enter image description here

第六列合并为第一、第二、第三和第四列,如何使它像我的表格一样?

当我使用 firebug 检查 css 时,我看到我的 colspan 行是空的,这是使用 firebug 时的样子: enter image description here

结果应该看起来像第一行,原始 HTML 就像我在上面发布的一样。为什么从我的

最佳答案

添加样式

您得到一个无样式的版本,因为在您的 print() 函数中您没有包含样式。查看您修改后的示例:

print(): void {
let printContents, popupWin;
printContents = document.getElementById('print-section').innerHTML;
popupWin = window.open('', '_blank', 'top=0,left=0,height=100%,width=auto');
popupWin.document.open();
popupWin.document.write(`
<html>
<head>
<title>Print tab</title>
// You need to insert the stylesheet to the print function
<link rel="stylesheet" href="correct href to your stylesheet">
</head>
<body onload="window.print();window.close()">${printContents}</body>
</html>`
);
popupWin.document.close();
}

删除页面链接

要从页面顶部删除链接,请按照此帖子中的说明进行操作:Disabling browser print options (headers, footers, margins) from page?

关于javascript - 当我在 angular2 中将表格样式化为 pdf 时如何打印 html 格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42340822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com