以下代码在我的本地环境中完美运行..但是,相同的在线代码无效。我没有收到任何错误,iFrame没有按预期弹出。
iframe中的src
属性始终按预期更改...
if($('#iFramePdf').length > 0)
$('#iFramePdf').attr('src', json.pdf);
else
$('body').append('<iframe class="hidden" id="iFramePdf" src="' + json.pdf + '"></iframe>');
// enough time for the src being changed
setTimeout(function()
{
$('#iFramePdf').get(0).focus();
$('#iFramePdf').get(0).contentWindow.print();
}, 1000);
有什么不对?
修改1 :这似乎问题可能是content-type
标题造成的?
json.pdf有这样的绝对URL:
http://mywebsite.com/public/files/somefile.pdf
它不会打开Chrome预览对话框。但是,如果我删除http://mywebsite.com
并仅发送public/files/somefile.pdf
- 就像相对路径一样,则会打开Chrome预览对话框,但会显示我的404页面。
检索PDF的函数ajax_get
具有以下响应标头:
Cache-Control:no-cache, no-store, must-revalidate
Connection:keep-alive
Content-Encoding:gzip
Content-Length:166
Content-Type:text/html; charset=UTF-8
Date:Tue, 26 Jan 2016 09:24:42 GMT
Expires:0
Pragma:no-cache
Server:nginx
Vary:User-Agent,Accept-Encoding
X-Powered-By:PHP/5.6.17
并检索以下json:
{"status":1,"msg":"Added successfully", "pdf":"http:\/\/mywebsite.com\/public\/files\/somefile.pdf"}
收到json之后,在我将pdf的路径发送到chrome控制台的网络选项卡中的iFrame之后,pdf将检索为响应头:
Accept-Ranges:bytes
Cache-Control:no-cache, no-store, must-revalidate
Connection:keep-alive
Content-Length:52611
Content-Type:application/pdf
Date:Tue, 26 Jan 2016 09:24:42 GMT
Expires:0
Last-Modified:Tue, 26 Jan 2016 09:24:42 GMT
Pragma:no-cache
Server:nginx
Vary:User-Agent
编辑2:我刚试过没有成功从PHP页面检索PDF,如下所示:
function display_pdf($url)
{
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="testing.pdf"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
echo file_get_contents(base_url() . $url);
}
在发送到iFramePdf
之前使用javascript:
json.pdf = json.pdf.replace('http://mywebsite.com/', '');
json.pdf = base_url + 'backend/files/display_pdf/' + json.pdf;
最终网址如下:http://mywebsite/backend/files/display_pdf/public/files/somefile.pdf
如果我在浏览器中输入该链接,则可以正常工作..但在iframe中,它仍然不会从chrome打开打印预览。
编辑3 :我再运行一些测试,问题仍在iframe上继续,因为它可以通过其他方式运行。例如,下面的代码打开一个新选项卡,自动打开chrome的打印预览对话框,没有任何问题。
var win=window.open('about:blank');
win.document.write('<html><head></head><body>');
win.document.write('<iframe frameBorder="0" align="center" src="' + json.pdf + '" onload="test()" style="width: 100%; height: 100%"></iframe>');
win.document.write('<scr'+'ipt>function test(){window.focus();window.contentWindow.print()}</sc'+'ript></body></html>');
win.document.close();
if (window.focus) {win.focus()}
但我不想打开新标签。所以我试图在我所在的标签中打开一个标签:
var printWindow = window.open(json.pathToPdf, "printWindow", "scrollbars=yes");
printWindow.focus();
printWindow.print();
并且有效,它会在我所在的标签页面中打开一个小标签,但是它不会聚焦Chrome打印预览对话框,如果我正在全屏工作,它会将其关闭。
编辑4:问题实际上是因为PDF。如果我更改代码:
$('body').append('<iframe class="hidden" id="iFramePdf" src="' + json.pdf + '"></iframe>');
到
$('body').append('<iframe class="hidden" id="iFramePdf" src="http://mywebsite.com/public/images/someimage.png"></iframe>');
或
$('body').append('<iframe class="hidden" id="iFramePdf" src="http://mywebsite.com/somepage.php"></iframe>');
它没有任何问题。
如果我将PDF直接设置到src
,则打印预览对话框无法打开,但PDF已加载到iframe中。
$('body').append('<iframe class="hidden" id="iFramePdf" src="http://mywebsite.com/public/files/somepdf.pdf"></iframe>');
答案 0 :(得分:0)
经过我的所有尝试,这看起来真是一个没有人知道的错误。它适用于localhost但不适用于服务器。唯一的问题是PDF文件,因为图像和页面工作正常。
我可能最终会从生成的PDF文件中创建一个图像,这不是一个好的解决方案,因为我可以有多个PDF页面。
无论如何,如果有人知道任何解决方案或希望我尝试任何事情,我会很乐意这样做。
答案 1 :(得分:0)
当用户点击表格中的打印图标时,使用代码打印pdf。
1)调用js函数的图标代码:
<a href="javascript:printReport('<?= $userReport->pdf_file_name ?>')"><i class="btn-icon-only icon-large icon-print" title="Print Report"> </i></a>
2)一个div元素,用作占位符来显示和打印pdf:
<div id="view-report-holder"></div>
3)JS函数打印pdf报告:
function printReport(pdfFileName)
{
$('#view-report-holder').hide();
$('#view-report-holder').html('');
$('<iframe>', {
src: '<?= $uploadDir['baseurl']."/pdf_reports/" ?>' + pdfFileName,
frameborder: 0,
id: 'view-report',
scrolling: 'no'
}).appendTo('#view-report-holder');
var printTag = document.getElementById('view-report');
printTag.contentWindow.print();
return false;
}
在表格下显示pdf的链接和功能:(不需要打印功能,顺便说一句)
<a href="javascript:viewReport('<?= $userReport->pdf_file_name ?>')"><i class="btn-icon-only icon-large icon-eye-open" title="View Report"> </i></a>
...
function viewReport(pdfFileName)
{
$('#view-report-holder').show();
$('#view-report-holder').html('');
$('<iframe>', {
src: '<?= $uploadDir['baseurl']."/pdf_reports/" ?>' + pdfFileName,
frameborder: 0,
scrolling: 'no'
}).appendTo('#view-report-holder');
$('html, body').animate({
scrollTop: $("#view-report-holder").offset().top
});
return false;
}