2
有沒有一種方式,使用表達路由使用者可以發送輸入流到端點並閱讀它?nodejs輸入流使用快遞
總之,我希望端點用戶通過流式傳輸來上傳文件,而不是使用多部分/表單方式。例如:
app.post('/videos/upload', (request, response) => {
const stream = request.getInputStream();
const file = stream.read();
stream.on('done', (file) => {
//do something with the file
});
});
是否可以這樣做?
圖書館https://github.com/mscdex/busboy將做到這一點,你也得到每個文件流。 –