【发布时间】:2023-08-20 11:23:01
【问题描述】:
我正在尝试从包含一些内容的 html 元素(div)生成 PDF:
<div id = "toPDF">
<table >
<thead>
<tr>
<th>Destination</th>
<th>Start Date</th>
<th>End Date</th>
<th>Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>Dest1</td>
<td>Date1</td>
<td>Date2</td>
<td>Comment1</td>
</tr>
</tbody>
</table>
</div>
.
.
.
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.debug.js" integrity="sha384-NaWTHo/8YCBYJ59830LTz/P4aQZK1sS0SneOgAvhsIl3zBu8r9RevNg5lHCHAuQ/" crossorigin="anonymous"></script>
<script src="app.js"></script>
我正在使用以下 javascript:
window.html2canvas = html2canvas;
var elem = document.getElementById('toPDF');
pdf.html(elem,
{
x: 20,
y: 140,
callback:
function (pdf) {
pdf.text(80, 230, "Test Text");
var iframe = document.createElement('iframe');
iframe.setAttribute('style', 'position:absolute;top:0;right:0;height:100%; width:600px');
document.body.appendChild(iframe);
iframe.src = pdf.output('datauristring');
}
});
生成的 PDF 显示“测试文本”,但没有 html 表的痕迹。如果我删除“测试文本”,则输出 PDF 为空。浏览器控制台显示如下错误:
TypeError: Argument 1 of CanvasRenderingContext2D.drawImage could not be converted to any of: HTMLImageElement, SVGImageElement, HTMLCanvasElement, HTMLVideoElement, ImageBitmap
我尝试了不同的选择。我要求一个有效的 jsPDF.html() 示例。
【问题讨论】:
-
你不需要 iframe。这是一个工作示例:*.com/a/56415117/4271117
-
@WeihuiGuo:我试过你的代码,但没有区别。新页面打开并显示一个文档,但它完全是空白的。