您好,登錄后才能下訂單哦!
這篇文章主要介紹“vue怎么打印瀏覽器頁面功能”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“vue怎么打印瀏覽器頁面功能”文章能幫助大家解決問題。
1,安裝 npm install vue-print-nb --save
2,引入 安裝好以后在main.js文件中引入
import Print from 'vue-print-nb'
Vue.use(Print); //注冊(cè)
3,現(xiàn)在就可以使用了
div id="printTest" > <p>明月照于山間</p> <p>清風(fēng)來于江上 </p> </div> <button v-print="'#printTest'">打印</button>
4.如需通過鏈接地址打?。簑indow.location.href = airway_bill; airway_bill為鏈接地址。
5.如果內(nèi)容打印不全,在打印操作時(shí)點(diǎn)擊更多設(shè)置,然后設(shè)置縮放。
方法一使用時(shí)可能會(huì)遇到內(nèi)容只有一頁,但是點(diǎn)擊打印會(huì)打印2張的情況。解決辦法:查看定義的元素高度是否有被設(shè)置為100%,或html高度被設(shè)置成100%,如果有去掉即可。
1.在src下新建文件夾plugs,將下載好的print.js放入plugs文件夾下
2.在main.js中引入
print.js 里的代碼
//print.js 里的代碼 // 打印類屬性、方法定義 /* eslint-disable */ const Print =function(dom, options) { if (!(this instanceof Print)) return new Print(dom, options); this.options = this.extend({ 'noPrint': '.no-print' }, options); if ((typeof dom) === "string") { this.dom = document.querySelector(dom); } else { this.dom = dom; } this.init(); }; Print.prototype = { init: function () { var content = this.getStyle() + this.getHtml(); this.writeIframe(content); }, extend: function (obj, obj2) { for (var k in obj2) { obj[k] = obj2[k]; } return obj; }, getStyle: function () { var str = "", styles = document.querySelectorAll('style,link'); for (var i = 0; i < styles.length; i++) { str += styles[i].outerHTML; } str += "<style>" + (this.options.noPrint ? this.options.noPrint : '.no-print') + "{display:none;}</style>"; return str; }, getHtml: function () { var inputs = document.querySelectorAll('input'); var textareas = document.querySelectorAll('textarea'); var selects = document.querySelectorAll('select'); for (var k in inputs) { if (inputs[k].type == "checkbox" || inputs[k].type == "radio") { if (inputs[k].checked == true) { inputs[k].setAttribute('checked', "checked") } else { inputs[k].removeAttribute('checked') } } else if (inputs[k].type == "text") { inputs[k].setAttribute('value', inputs[k].value) } } for (var k2 in textareas) { if (textareas[k2].type == 'textarea') { textareas[k2].innerHTML = textareas[k2].value } } for (var k3 in selects) { if (selects[k3].type == 'select-one') { var child = selects[k3].children; for (var i in child) { if (child[i].tagName == 'OPTION') { if (child[i].selected == true) { child[i].setAttribute('selected', "selected") } else { child[i].removeAttribute('selected') } } } } } return this.dom.outerHTML; }, writeIframe: function (content) { var w, doc, iframe = document.createElement('iframe'), f = document.body.appendChild(iframe); iframe.id = "myIframe"; iframe.style = "position:absolute;width:0;height:0;top:-10px;left:-10px;"; w = f.contentWindow || f.contentDocument; doc = f.contentDocument || f.contentWindow.document; doc.open(); doc.write(content); doc.close(); this.toPrint(w); setTimeout(function () { document.body.removeChild(iframe) }, 100) }, toPrint: function (frameWindow) { try { setTimeout(function () { frameWindow.focus(); try { if (!frameWindow.document.execCommand('print', false, null)) { frameWindow.print(); } } catch (e) { frameWindow.print(); } frameWindow.close(); }, 10); } catch (err) { console.log('err', err); } } }; const MyPlugin = {} MyPlugin.install = function (Vue, options) { Vue.prototype.$print = Print } export default MyPlugin
main.js里引入
import Print from './plugs/print' Vue.use(Print)
使用
<template> <div> <!-- 點(diǎn)擊按鈕打印 --> <el-button type="primary" @click="printDemo">點(diǎn)擊打印</el-button> <!-- <div ref="print"> <h2>這里是打印內(nèi)容</h2> </div>--> <img class="printsrcclass" ref='print' :src="printsrc"/> </div> </template> <script> export default { data(){ return {} }, methods: { // 點(diǎn)擊打印 printDemo(){ setTimeout(() => { this.$print(this.$refs.print) }, 100); } }, mounted() { } }
4.注意事項(xiàng) 需使用ref獲取dom節(jié)點(diǎn),若直接通過id或class獲取則webpack打包部署后打印內(nèi)容為空
5.指定不打印區(qū)域
方法1. 添加no-print樣式類
不要打印我
方法2. 自定義類名
不要打印我
this. print (this . print(this. print(this.refs.print,{‘no-print':‘.do-not-print-me-xxx'}) // 使用
如果圖片出不來 打印出不來 等情況
參考下面代碼
const res2 = await fnApi(orderId); let myBlob = new Blob([res2.data], { type: 'image/jpeg'}); var href = URL.createObjectURL(myBlob); // 創(chuàng)建對(duì)象超鏈接 // 此時(shí)拿到圖片地址 href,后面直接使用該地址即可 let img = new Image(); img.src = href; img.onload = () => { this.printsrc = href; this.$nextTick(() => { this.mypirntFN(); }) }
接口別忘了加類型
Ps:
一,可能遇到的問題及解決方案
①圖片占位置 ---------讓它脫離文檔流( position: absolute; 不要用fixed 這樣內(nèi)容多的時(shí)候只打印第一頁)
②頁面不想展示打印內(nèi)容 只打??;------- 給它 z-index:-1 (display:none 的話打印內(nèi)容也沒有)
目前解決不了 跳過打印預(yù)覽直接打印功能
關(guān)于“vue怎么打印瀏覽器頁面功能”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。