您好,登錄后才能下訂單哦!
這篇文章主要介紹了vue如何實現(xiàn)文件上傳讀取及下載功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
文件的上傳利用input標(biāo)簽的type="file"屬性,讀取用FileReader對象,下載通過創(chuàng)建a標(biāo)簽實現(xiàn)
<template> <div class="filediv"> <el-button @click="downloadFile">下載</el-button> <div id="fileselect"> <el-input type="file"></el-input> </div> </div> </template> <script> export default { data () { return { } }, mounted: function () { this.$nextTick(function () { this.readFile() }) }, methods: { // 下載文件 downloadFile: function () { var content = [ { 'firstName': 'John', 'lastName': 'Doe' }, { 'firstName': 'Anna', 'lastName': 'Smith' }, { 'firstName': 'Peter', 'lastName': 'Jones' } ] var filecontent = JSON.stringify(content) if ('download' in document.createElement('a')) { this.download(filecontent, 'testfile.json') } else { alert('瀏覽器不支持') } }, // 下載設(shè)備配置文件 download: function (content, filename) { let link = document.createElement('a') link.download = filename link.style.display = 'none' // 字符內(nèi)容轉(zhuǎn)變成blob地址 let blob = new Blob([content]) link.href = URL.createObjectURL(blob) document.body.appendChild(link) link.click() document.body.removeChild(link) }, // 導(dǎo)入設(shè)備,監(jiān)聽上傳文件并讀取 readFile: function () { console.log('讀取文件') let fileselect = document.querySelector('#fileselect') fileselect.addEventListener('change', function (e) { console.log(e) let file = e.target.files console.log('文件類型') console.log(file) if (file.length === 0) { return } let reader = new FileReader() if (typeof FileReader === 'undefined') { this.$message({ type: 'info', message: '您的瀏覽器不支持FileReader接口' }) return } reader.readAsText(file[0]) reader.onload = function (e) { console.log('文件內(nèi)容') console.log(e.target.result) } }.bind(this)) } } } </script> <style scoped> .filediv { width: 400px; margin: 20px; } </style>
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“vue如何實現(xiàn)文件上傳讀取及下載功能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。