10

我有一个使用 AngularJS 的 html 页面,我想从中打印一个 div。有 Angular 的方法吗?..或者它只是下面的经典javascript方式:

    <script language="javascript" type="text/javascript">
    function printDiv(divID) {
        //Get the HTML of div
        var divElements = document.getElementById(divID).innerHTML;
        //Get the HTML of whole page
        var oldPage = document.body.innerHTML;

        //Reset the page's HTML with div's HTML only
        document.body.innerHTML =
        "<html><head><title></title></head><body>" +
        divElements + "</body>";

        //Print Page
        window.print();

        //Restore orignal HTML
        document.body.innerHTML = oldPage;
        }
    </script> 

如果 AngularJS 对此没有任何帮助,您能否建议一种不使用 JavaScript 函数的方法(例如: doc.getElementById() ).. 一种接近 AngularJS 方式的方法?

谢谢,

4

3 回答 3

16

我创建了一个简单的指令,用于使用 iframe 技术打印 div 内容。这有点hackish,但效果很好。我认为没有更好的方法可以做到这一点。指令脚本是:

'use strict';

angular.module('yourAppNameHere').directive('printDiv', function () {
  return {
    restrict: 'A',
    link: function(scope, element, attrs) {
      element.bind('click', function(evt){    
        evt.preventDefault();    
        PrintElem(attrs.printDiv);
      });

      function PrintElem(elem)
      {
        PrintWithIframe($(elem).html());
      }

      function PrintWithIframe(data) 
      {
        if ($('iframe#printf').size() == 0) {
          $('html').append('<iframe id="printf" name="printf"></iframe>');  // an iFrame is added to the html content, then your div's contents are added to it and the iFrame's content is printed

          var mywindow = window.frames["printf"];
          mywindow.document.write('<html><head><title></title><style>@page {margin: 25mm 0mm 25mm 5mm}</style>'  // Your styles here, I needed the margins set up like this
                          + '</head><body><div>'
                          + data
                          + '</div></body></html>');

          $(mywindow.document).ready(function(){
            mywindow.print();
            setTimeout(function(){
              $('iframe#printf').remove();
            },
            2000);  // The iFrame is removed 2 seconds after print() is executed, which is enough for me, but you can play around with the value
          });
        }

        return true;
      }
    }
  };
});

在您的模板中,您像这样标记打印按钮:

<a href="#" print-div=".css-selector-of-the-div-you-want-to-print">Print!</a>

就是这样,它应该工作。骇人听闻的部分是 iFrame 在一定的毫秒数后被删除,因为没有跨浏览器的方法来检测打印执行的结束,因此您可以猜测运行它需要多少时间。

您可能需要包含 jQuery 才能使其工作,我不确定,因为没有它我几乎从不工作。我添加了一些内联注释以使事情更清晰。我使用了这个答案中的一些代码,这些代码使用弹出窗口来打印 div 内容(但在 Angular.js 之外)。也许你会更喜欢这种方法。

于 2014-01-24T09:11:58.160 回答
5

我需要这个才能在 IE8+ 中工作

'use strict';

angular
.module('print-div', [])
.directive('printDiv', function () {
    return {
        restrict: 'A',
        link: function(scope, element, attrs) {

            var iframe;
            var elementToPrint = document.querySelector(attrs.printDiv);

            if (!window.frames["print-frame"]) {
                var elm = document.createElement('iframe');
                elm.setAttribute('id', 'print-frame');
                elm.setAttribute('name', 'print-frame');
                elm.setAttribute('style', 'display: none;');
                document.body.appendChild(elm);
            }

            function write(value) {
                var doc;
                if (iframe.contentDocument) { // DOM
                    doc = iframe.contentDocument;
                } else if (iframe.contentWindow) { // IE win
                    doc = iframe.contentWindow.document;
                } else {
                    alert('Wonder what browser this is... ' + navigator.userAgent);
                }
                doc.write(value);
                doc.close();
            }

            element.bind('click', function(event) {
                iframe = document.getElementById('print-frame');
                write(elementToPrint.innerHTML);

                if (window.navigator.userAgent.indexOf ("MSIE") > 0) {
                    iframe.contentWindow.document.execCommand('print', false, null);
                } else {
                    iframe.contentWindow.focus();
                    iframe.contentWindow.print();
                }
            });
        }
    };
});
于 2014-05-27T16:08:40.577 回答
-1

angularPrint 是一个非常易于使用的角度指令。 https://github.com/samwiseduzer/angularPrint

您只需使用其自定义属性装饰您的 html:

<div>
  <div print-section>
    I'll print
    <p>Me, too!</p>
  </div>
  <div>I won't</div>
</div>
于 2016-03-11T16:19:42.073 回答