我需要在javascript中导出pdf a iframe,但它有令牌授权,我无法获得html。
<iframe type="application/pdf" width="600" height="373.5" src="https://app.powerbi.com/view?r=eyJrIjoiNjk1MzdjNmQtZThmYi00MjQwLWFiODItZTlhZTJiZWJiODU1IiwidCI6IjQyZDlhY2FhLTVhYTItNDhiMy04MDgxLTRlMTgzODdmMWVkNSIsImMiOjF9&pageName=ReportSection" frameborder="0" allowFullScreen="true">
</iframe>
发布于 2021-07-23 04:50:20
尽管有一些复杂且低效的-ridiculously方法,但考虑到您尝试生成的是Power BI报告/视图,最好的方法是使用PowerBI Export API
详细说明和手册可在此处找到:https://powerbi.microsoft.com/en-us/blog/export-report-to-pdf-pptx-and-png-files-using-power-bi-rest-api/
发布于 2021-07-23 04:41:29
为此,您可能需要一个Javascript库。查看JSPDF:https://github.com/MrRio/jsPDF。
你也可以看看这篇文章:Using jsPDF to create a PDF from an iframe
https://stackoverflow.com/questions/68494086
复制