javascript #upload #nodejs #multer #express

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript #upload #nodejs #multer #express相关的知识,希望对你有一定的参考价值。

const express = require('express');
const multer = require('multer');

var tempUploadStorage = multer.diskStorage({
    destination: function (req, file, cb) {
        cb(null, 'path')
    },
    filename: function (req, file, cb) {
        cb(null,  file.originalname.replace(' ', '_'));
    }
})
var tempUpload = multer({
    storage: tempUploadStorage
})


router.post('/upload/temp', tempUpload.single('file'), function (req, res, next) {
 console.log(req.file.filename);
})

以上是关于javascript #upload #nodejs #multer #express的主要内容,如果未能解决你的问题,请参考以下文章

Nodejs Sharp Image Resize and Upload to S3 超时

NodeJS FTP模块使用

使用 NodeJS 进行多部分文件上传

nodejs multer文件上传,路径包含双斜杠

NodeJS:获取文件,而不是缓冲区

使用javascript sdk将文件上传到Google云端硬盘