您好,登錄后才能下訂單哦!
這篇文章主要介紹了vue如何實現文件上傳讀取及下載功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
文件的上傳利用input標簽的type="file"屬性,讀取用FileReader對象,下載通過創建a標簽實現
<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('瀏覽器不支持') } }, // 下載設備配置文件 download: function (content, filename) { let link = document.createElement('a') link.download = filename link.style.display = 'none' // 字符內容轉變成blob地址 let blob = new Blob([content]) link.href = URL.createObjectURL(blob) document.body.appendChild(link) link.click() document.body.removeChild(link) }, // 導入設備,監聽上傳文件并讀取 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('文件內容') console.log(e.target.result) } }.bind(this)) } } } </script> <style scoped> .filediv { width: 400px; margin: 20px; } </style>
感謝你能夠認真閱讀完這篇文章,希望小編分享的“vue如何實現文件上傳讀取及下載功能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。