如何将文件从邮递员发送到节点js?

时间:2017-12-04 10:39:05

标签: javascript node.js file-upload

我想将文件从邮递员上传到节点js,但我有问题。 邮差 写url,检查post方法,检查表单数据,检查文件,写文件名并选择文件 这是我的代码 app.js

const express = require('express');
const bodyParser = require('body-parser');
const fileUpload = require('express-fileupload');

app.use(fileUpload());
app.use(bodyParser.urlencoded({extended: false}));
app.use(bodyParser.json());

router.js

router.post('/schedule/entry', function(req,res){
   console.log(req.file.name);
});

如果我写这段代码,控制台会返回未定义的名称

router.post('/schedule/entry', function(req,res){
   console.log(req.file);
});

返回' undefined' 为什么呢?

的package.json

  {
   "name": "nodejs-rest-api-authentication",
   "version": "1.0.0",
   "description": "",
   "main": "app.js",
   "scripts": {
   "start": "node server.js",
   "test": "echo \"Error: no test specified\" && exit 1"
 },
 "author": "",
 "license": "ISC",
 "dependencies": {
  "bcryptjs": "^2.4.3",
  "body-parser": "^1.16.1",
  "csv-array": "0.0.22",
  "csv-write-stream": "^2.0.0",
  "express": "^4.14.1",
  "express-fileupload": "^0.3.0",
"fast-csv": "^2.4.1",
"formidable": "^1.1.1",
"json2csv": "^3.11.5",
"jsonwebtoken": "^8.1.0",
"mysql": "^2.15.0"
  }
 }

server.js

const app = require('./app');
const port = process.env.PORT || 3000;

const server = app.listen(port, function() {
console.log('Server listening on port ' + port);
});

screenshots screenshots

codeGit

2 个答案:

答案 0 :(得分:0)

根据评论部分的讨论:

const express = require('express')
const app = express()
const formidable = require('formidable')
const path = require('path')
const uploadDir = '' // uploading the file to the same path as app.js

app.post('/', (req, res) =>{
  var form = new formidable.IncomingForm()
  form.multiples = true
  form.keepExtensions = true
  form.uploadDir = uploadDir
  form.parse(req, (err, fields, files) => {
    if (err) return res.status(500).json({ error: err })
    res.status(200).json({ uploaded: true })
  })
  form.on('fileBegin', function (name, file) {
    const [fileName, fileExt] = file.name.split('.')
    file.path = path.join(uploadDir, `${fileName}_${new Date().getTime()}.${fileExt}`)
  })
});


app.listen(3000, () => console.log('Example app listening on port 3000!'))

附加屏幕截图enter image description hereenter image description here

enter image description here

答案 1 :(得分:0)

由于主体解析器中间件文件在req中将不可用,因此您必须使用其他中间件库,例如connect-busboymulterconnect-multiparty