您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關使用Koa2 怎么實現一個文件上傳下載功能,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
文件上傳
在前端中上傳文件,我們都是通過表單來上傳,而上傳的文件,在服務器端并不能像普通參數一樣通過 ctx.request.body 獲取。我們可以用 koa-body 中間件來處理文件上傳,它可以將請求體拼到 ctx.request 中。
// app.js const koa = require('koa'); const app = new koa(); const koaBody = require('koa-body'); app.use(koaBody({ multipart: true, formidable: { maxFileSize: 200*1024*1024 // 設置上傳文件大小最大限制,默認2M } })); app.listen(3001, ()=>{ console.log('koa is listening in 3001'); })
使用中間件后,就可以在 ctx.request.body.files 中獲取上傳的文件內容。需要注意的就是設置 maxFileSize,不然上傳文件一超過默認限制就會報錯。
接收到文件之后,我們需要把文件保存到目錄中,返回一個 url 給前端。在 node 中的流程為
創建可讀流 const reader = fs.createReadStream(file.path)
創建可寫流 const writer = fs.createWriteStream('upload/newpath.txt')
可讀流通過管道寫入可寫流 reader.pipe(writer)
const router = require('koa-router')(); const fs = require('fs'); router.post('/upload', async (ctx){ const file = ctx.request.body.files.file; // 獲取上傳文件 const reader = fs.createReadStream(file.path); // 創建可讀流 const ext = file.name.split('.').pop(); // 獲取上傳文件擴展名 const upStream = fs.createWriteStream(`upload/${Math.random().toString()}.${ext}`); // 創建可寫流 reader.pipe(upStream); // 可讀流通過管道寫入可寫流 return ctx.body = '上傳成功'; })
該方法適用于上傳圖片、文本文件、壓縮文件等。
文件下載
koa-send 是一個靜態文件服務的中間件,可用來實現文件下載功能。
const router = require('koa-router')(); const send = require('koa-send'); router.post('/download/:name', async (ctx){ const name = ctx.params.name; const path = `upload/${name}`; ctx.attachment(path); await send(ctx, path); })
在前端進行下載,有兩個方法: window.open 和表單提交。這里使用簡單一點的 window.open 。
<button onclick="handleClick()">立即下載</button> <script> const handleClick = () => { window.open('/download/1.png'); } </script>
這里 window.open 默認是開啟一個新的窗口,一閃然后關閉,給用戶的體驗并不好,可以加上第二個參數 window.open('/download/1.png', '_self'); ,這樣就會在當前窗口直接下載了。然而這樣是將 url 替換當前的頁面,則會觸發 beforeunload 等頁面事件,如果你的頁面監聽了該事件做一些操作的話,那就有影響了。那么還可以使用一個隱藏的 iframe 窗口來達到同樣的效果。
<button onclick="handleClick()">立即下載</button> <iframe name="myIframe" ></iframe> <script> const handleClick = () => { window.open('/download/1.png', 'myIframe'); } </script>
批量下載
批量下載和單個下載也沒什么區別嘛,就多執行幾次下載而已嘛。這樣也確實沒什么問題。如果把這么多個文件打包成一個壓縮包,再只下載這個壓縮包,是不是體驗起來就好一點了呢。
文件打包
archiver 是一個在 Node.js 中能跨平臺實現打包功能的模塊,支持 zip 和 tar 格式。
const router = require('koa-router')(); const send = require('koa-send'); const archiver = require('archiver'); router.post('/downloadAll', async (ctx){ // 將要打包的文件列表 const list = [{name: '1.txt'},{name: '2.txt'}]; const zipName = '1.zip'; const zipStream = fs.createWriteStream(zipName); const zip = archiver('zip'); zip.pipe(zipStream); for (let i = 0; i < list.length; i++) { // 添加單個文件到壓縮包 zip.append(fs.createReadStream(list[i].name), { name: list[i].name }) } await zip.finalize(); ctx.attachment(zipName); await send(ctx, zipName); })
如果直接打包整個文件夾,則不需要去遍歷每個文件 append 到壓縮包里
const zipStream = fs.createWriteStream('1.zip'); const zip = archiver('zip'); zip.pipe(zipStream); // 添加整個文件夾到壓縮包 zip.directory('upload/'); zip.finalize();
注意:打包整個文件夾,生成的壓縮包文件不可存放到該文件夾下,否則會不斷的打包。
中文編碼問題
當文件名含有中文的時候,可能會出現一些預想不到的情況。所以上傳時,含有中文的話我會對文件名進行 encodeURI() 編碼進行保存,下載的時候再進行 decodeURI() 解密。
ctx.attachment(decodeURI(path)); await send(ctx, path);
ctx.attachment 將 Content-Disposition 設置為 “附件” 以指示客戶端提示下載。通過解碼后的文件名作為下載文件的名字進行下載,這樣下載到本地,顯示的還是中文名。
然鵝, koa-send 的源碼中,會對文件路徑進行 decodeURIComponent() 解碼:
// koa-send path = decode(path) function decode (path) { try { return decodeURIComponent(path) } catch (err) { return -1 } }
這時解碼后去下載含中文的路徑,而我們服務器中存放的是編碼后的路徑,自然就找不到對應的文件了。
要想解決這個問題,那么就別讓它去解碼。不想動 koa-send 源碼的話,可使用另一個中間件 koa-sendfile 代替它。
const router = require('koa-router')(); const sendfile = require('koa-sendfile'); router.post('/download/:name', async (ctx){ const name = ctx.params.name; const path = `upload/${name}`; ctx.attachment(decodeURI(path)); await sendfile(ctx, path); })
關于使用Koa2 怎么實現一個文件上傳下載功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。