我正在使用XMLHttpRequest
将大型文件从浏览器直接上传到Amazon S3,就像这样(有效):
export const fileUploader = async (url, file) => {
const xhr = new XMLHttpRequest()
xhr.upload.addEventListener('load', () => {
// ...
})
xhr.upload.addEventListener('error', () => {
// ...
})
xhr.upload.addEventListener('abort', () => {
// ...
})
xhr.upload.addEventListener('progress', () => {
// ...
})
xhr.open('PUT', url)
xhr.setRequestHeader('content-type', file.type)
xhr.setRequestHeader('x_file_name', file.name)
xhr.send(file)
}
对于本地开发和测试,我想在我的node.js服务器中创建一个路由,它将接受要上传的文件。
服务器端,request.body
始终为空:
router.put('/image-upload', koaBody(), async (ctx) => {
console.log(ctx.request)
// { method: 'PUT',
// url: '/image-upload',
// header:
// { host: 'localhost:3500',
// connection: 'keep-alive',
// 'content-length': '324285',
// pragma: 'no-cache',
// 'cache-control': 'no-cache',
// origin: 'http://localhost:3000',
// 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.10 Safari/537.36',
// x_file_name: 'l1lnRw.jpg',
// 'content-type': 'image/jpeg',
// accept: '*/*',
// referer: 'http://localhost:3000/gallery/4',
// 'accept-encoding': 'gzip, deflate, br',
// 'accept-language': 'en-US,en;q=0.9,fr;q=0.8' } }
console.log(ctx.request.body) // {}
console.log(ctx.req.body) // undefined
})
如何直接上传文件'到Koa node.js服务器而不将其包装在FormData()
中?感谢。
答案 0 :(得分:1)
以下是如何上传文件而不包含在Koa中的FormData()
:
import getRawBody from 'raw-body'
router.put('/image-upload', async (ctx) => {
const file = await getRawBody(ctx.req)
const bufferStream = new stream.PassThrough()
const writeStream = fs.createWriteStream(`${config.staticDir}/file.jpg`)
bufferStream.end(file)
bufferStream.pipe(writeStream)
ctx.body = {
status: 'uploaded!'
}
})