1 Star 0 Fork 10

nangua/file-server

forked from RunnerGo/file-server 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 872 Bytes
一键复制 编辑 原始数据 按行查看 历史
liuguanglei 提交于 2022-11-18 21:14 . fix: push code
const express = require('express');
const multer = require('multer');
const app = express();
const path = require('path');
const { v4 } = require('uuid');
app.use(express.static(path.join(__dirname,'./file')));
app.all('*', function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header('Access-Control-Allow-Methods', "*");
res.header('Access-Control-Allow-Headers', "*");
next();
});
const storage = multer.diskStorage({
destination: function (req, file, cb) {
cb(null, './file/');
},
filename: function(req, file, cb) {
cb(null, `${v4()}.${file.originalname.split('.')[1]}`);
}
});
const upload = multer({storage});
app.post('/api/upload', upload.array('file', 5), (req, res) => {
// console.log(req);
res.send(req.files);
})
app.listen(20004, () => {
console.log('server running!');
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/nangua/file-server.git
[email protected]:nangua/file-server.git
nangua
file-server
file-server
open

搜索帮助