3

对于当前的非 IE 浏览器(Chrome、Firefox、Opera、Safari),我想将 PDF 文档发送到给定该 PDF 的 URL 的打印机。

为了避免弹出多余的窗口,我目前正在这样做,<iframe>但我想在打印完成后关闭 iframe,否则一些浏览器会在尝试离开页面时弹出一个对话框。

到目前为止,这是我想出的(为了简单起见,使用 lodash 和 jQuery):

var _print_url, _remove_iframe, _set_print;

_print_url = function(src_url) {
  $("<iframe src='" + src_url + "' type='application/pdf'>").css({
    visibility: 'hidden',
    position: 'fixed',
    right: '0',
    bottom: '0'
  }).on('load', _set_print).appendTo(document.body);
};

_remove_iframe = function(iframe) {
  return $(iframe).parent().find(iframe).detach();
};

_set_print = function() {
  this.contentWindow.print();
/* 
 * Where we could do @contentWindow.close() with a window, we must remove the
 * print iframe from the DOM. We have to engage in some async madness
 * it seems, for no apparent reason other than this won't work
 * synchronously (@cw.print above must be async, it seems) - even though 
 * window.close() appears to work synchronously.
 */
  _.delay(_.partial(_remove_iframe, this), 100);
};

有时,似乎与Google Chrome一起,打印式数字最终会正确显示PDF,但是当人们选择打印机并确认打印的意图时,它实际上会将框架的父页面的内容发送到打印机,而不是PDF本身。

Mozilla 页面上有一个链接建议,但该文档目前似乎已过时。我能找到的最好的例子是对发票的亚马逊网络服务打印对话框进行逆向工程,但这会打开一个窗口。

我考虑过的另一种选择是Google Cloud Print,但显然这需要安装额外的软件或配置 Google 帐户,除非必要,否则我不希望对用户强加。

是否还有其他示例可以说明如何在给定 URL 的情况下打印 PDF,尤其是使用 Javascript 并且没有其他多余的额外浏览器插件或人工制品(例如弹出窗口)?

4

1 回答 1

3

-- 注意这种方法你永远不会看到弹出窗口拦截器 --

几个月前,我在一个 ajax 应用程序中遇到了类似的问题,我面临的问题是我需要创建 pdf 文件并在将其发送打印之前存储,我所做的如下:

我没有使用 iframe。此应用程序与 php 一起TCPDF用于创建 pdf 和jquery模板underscore系统。

您可以在http://www.screenr.com/Ur07观看演示视频(2 分 18 秒)

  1. 通过 JSON (ajax) 发送信息来实现这一点,因为我遇到了一切都在 ajax 中的问题,所以我无法使用信息发布,所以我所做的是将隐藏附加form到 DOM 然后与目标="_blank" 将帖子发布到新窗口(您将在流程结束时关闭该窗口)。

HTML隐藏虚拟表单

<form method='<%= method %>' 
      action="<%= action %>" 
      name="<%= name %>" 
      id="<%= id %>" 
      target="_blank">
    <input type='hidden' name='json' id='<%= valueId %>' />
</form>

Javascript

 function makePost(){
  var _t = _.template(_JS_Templates["print.form.hidden"]); //this the html of the form

  var o = {
    method : "POST",
    action : js_WEB_ + "/print.php",
    name : "print_virtual_form",
    id : "print_virtual_form_id",
    valueId : "print_virtual_value"
  }

 var form = _t(o);
 $(".warp").append(form); //appending the form to the dom

  var json = {
    data : data // some data
  }     

 $("#print_virtual_value").val(JSON.stringify(json)); //assing to the hidden input the value and stringify the json
 $("#print_virtual_form_id").submit(); //make the post submmitting the form
 $("#print_virtual_form_id").remove(); //removing the "virtual hidden form"

}

2.-当你收到我的情况下的 json 是使用 php 你创建你必须创建的任何东西时,我这样做你可以在这个例子中看到 php 代码(是我的答案)

在 ajax 调用中使用 TCPDF 生成 PDF

3.- 最后,最酷的部分是响应,在这部分,我使用 php 文件编写了一个 javascript 代码,说必须关闭父窗口并将 json 响应报告给特定函数,是一种回调。

switch($_SERVER['REQUEST_METHOD']){
    case "GET":
        echo "Denied";
    break;

    case "POST":
        if(isset($_POST["json"])){
            if(!empty($_POST["json"])){
                $json = $_POST["json"];             
                $hash = PDF::makePDF($json);
                echo "<script>
                  function init() {
                        //calling callback
                                        //returning control to the previous browser
                                 window.opener.someclass.finish('".$hash."');
                                 window.close();
                    }
                window.onload = init;                       
             </script>";
            }else{
                echo "not json detected";
            }
        }else{
            echo "not json detected";
        }
    break;

4.- 最后,您可以在窗口浏览器中进行控制。

var someobject = (function(name){
  //private
  var finish(data){
    //do whatever you want with the json data
  }

   //public
   var $r = {};
   $r.finish = function(data){ 
     finish(data); //you will pass the data to the finish function and that is..!! voila!!
   }

   return $r;
})("someobject");

我知道这不完全是您所要求的,而是解决同一问题的另一种方法,而我认为这稍微复杂一些,我可以保证在很多浏览器中都可以使用,并且用户会喜欢您这样做的方式。他们永远不会看到正在发生的事情,他们将按照预期的方式下载文件,单击链接并保存文件。

只是我的两分钱和快乐的编码。

于 2013-07-18T04:14:45.463 回答