Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了JasperReports Server的一些问题。我需要直接在服务器上打印报告。 我先查看报告,然后单击打印,它将打开打印机对话框。选择打印机后,我也可以打印报告。有任何想法吗?
我刚得到这个解决方案。我使用 javascript 代码。但我不知道这是否是最好的解决方案。如果有任何其他解决方案,请帮助我。这是代码:
var url=document.location.href+'&output=pdf'; var printWindow=window.open(url,'_blank'); printWindow.print();