当前位置:   article > 正文

vue 使用print.js实现前端打印功能_printjs

printjs

最近新接了一个需求,想要在前端实现打印功能,最开始试了window.print()这个方法,结果发现我想打印的图片它只能打印图片中的一部分,打印的不完整,如下图

调整了缩放比例之后发现还是不可以,后来又尝试了vue里面的一个插件vue-print-nb,但是当所有的东西都配置好之后,点击打印的时候竟然报错,大概意思是说我的css样式获取不到

然后我试了最后一种方法,亲测好使print.js

1.首先src下新建文件夹(只是方便管理,你放在其他位置也可以)

2.附上print.js的代码

你也可以直接去这里下载源码

https://github.com/xyl66/vuePlugs_printjs

  1. // 打印类属性、方法定义
  2. /* eslint-disable */
  3. const Print = function (dom, options) {
  4. if (!(this instanceof Print)) return new Print(dom, options);
  5. this.options = this.extend({
  6. 'noPrint': '.no-print'
  7. }, options);
  8. if ((typeof dom) === "string") {
  9. this.dom = document.querySelector(dom);
  10. } else {
  11. this.isDOM(dom)
  12. this.dom = this.isDOM(dom) ? dom : dom.$el;
  13. }
  14. this.init();
  15. };
  16. Print.prototype = {
  17. init: function () {
  18. var content = this.getStyle() + this.getHtml();
  19. this.writeIframe(content);
  20. },
  21. extend: function (obj, obj2) {
  22. for (var k in obj2) {
  23. obj[k] = obj2[k];
  24. }
  25. return obj;
  26. },
  27. getStyle: function () {
  28. var str = "",
  29. styles = document.querySelectorAll('style,link');
  30. for (var i = 0; i < styles.length; i++) {
  31. str += styles[i].outerHTML;
  32. }
  33. str += "<style>" + (this.options.noPrint ? this.options.noPrint : '.no-print') + "{display:none;}</style>";
  34. return str;
  35. },
  36. getHtml: function () {
  37. var inputs = document.querySelectorAll('input');
  38. var textareas = document.querySelectorAll('textarea');
  39. var selects = document.querySelectorAll('select');
  40. for (var k = 0; k < inputs.length; k++) {
  41. if (inputs[k].type == "checkbox" || inputs[k].type == "radio") {
  42. if (inputs[k].checked == true) {
  43. inputs[k].setAttribute('checked', "checked")
  44. } else {
  45. inputs[k].removeAttribute('checked')
  46. }
  47. } else if (inputs[k].type == "text") {
  48. inputs[k].setAttribute('value', inputs[k].value)
  49. } else {
  50. inputs[k].setAttribute('value', inputs[k].value)
  51. }
  52. }
  53. for (var k2 = 0; k2 < textareas.length; k2++) {
  54. if (textareas[k2].type == 'textarea') {
  55. textareas[k2].innerHTML = textareas[k2].value
  56. }
  57. }
  58. for (var k3 = 0; k3 < selects.length; k3++) {
  59. if (selects[k3].type == 'select-one') {
  60. var child = selects[k3].children;
  61. for (var i in child) {
  62. if (child[i].tagName == 'OPTION') {
  63. if (child[i].selected == true) {
  64. child[i].setAttribute('selected', "selected")
  65. } else {
  66. child[i].removeAttribute('selected')
  67. }
  68. }
  69. }
  70. }
  71. }
  72. return this.dom.outerHTML;
  73. },
  74. writeIframe: function (content) {
  75. var w, doc, iframe = document.createElement('iframe'),
  76. f = document.body.appendChild(iframe);
  77. iframe.id = "myIframe";
  78. //iframe.style = "position:absolute;width:0;height:0;top:-10px;left:-10px;";
  79. iframe.setAttribute('style', 'position:absolute;width:0;height:0;top:-10px;left:-10px;');
  80. w = f.contentWindow || f.contentDocument;
  81. doc = f.contentDocument || f.contentWindow.document;
  82. doc.open();
  83. doc.write(content);
  84. doc.close();
  85. var _this = this
  86. iframe.onload = function(){
  87. _this.toPrint(w);
  88. setTimeout(function () {
  89. document.body.removeChild(iframe)
  90. }, 100)
  91. }
  92. },
  93. toPrint: function (frameWindow) {
  94. try {
  95. setTimeout(function () {
  96. frameWindow.focus();
  97. try {
  98. if (!frameWindow.document.execCommand('print', false, null)) {
  99. frameWindow.print();
  100. }
  101. } catch (e) {
  102. frameWindow.print();
  103. }
  104. frameWindow.close();
  105. }, 10);
  106. } catch (err) {
  107. console.log('err', err);
  108. }
  109. },
  110. isDOM: (typeof HTMLElement === 'object') ?
  111. function (obj) {
  112. return obj instanceof HTMLElement;
  113. } :
  114. function (obj) {
  115. return obj && typeof obj === 'object' && obj.nodeType === 1 && typeof obj.nodeName === 'string';
  116. }
  117. };
  118. const MyPlugin = {}
  119. MyPlugin.install = function (Vue, options) {
  120. // 4. 添加实例方法
  121. Vue.prototype.$print = Print
  122. }
  123. export default MyPlugin

3.在main.js里面引入

4.最后就可以在自己的页面使用了

  1. <section ref="print" class="recordImg" id="printRecord">
  2. <img :src="image" alt="">
  3. </section>
  4. <span slot="footer" class="dialog-footer">
  5. <el-button @click="recordVisible = false">取 消</el-button>
  6. <el-button type="primary" @click="PrintRow">打 印</el-button>
  7. </span>
  1. //打印
  2. PrintRow(index, row){
  3. this.$print(this.$refs.print) // 使用
  4. },

好啦,到这里就可以啦,如果有小伙伴有更好的办法或者问题欢迎在下面留言讨论

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/105216
推荐阅读
相关标签
  

闽ICP备14008679号