我的HTML文件如下,
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>file</title>
</head>
<body>
<form method="post" action="/getusrfile" enctype='multipart/form-data'>
<input type="file" name="fil" >
<button type="submit">
sub
</button>
</form>
</body>
</html>
我正在使用节点,表达如下
app.post("/getusrfile",function(req,res){
console.log("came to server");// prints this
console.log(req.files);//prints undefined
//console.log(JSON.stringify(req.files.fil));
fs.readFile(req.files.fil, function (err, data) {
// ...
var newPath = __dirname + "/../public/uploadedFileName";
fs.writeFile(newPath, data, function (err) {
console.log(err);
res.send(err);
});
});
});
它打印到服务器但在服务器上没有创建文件/目录。 响应是“无法POST / getusrfile”状态为404。
和req.files打印未定义的
如何让它发挥作用?
答案 0 :(得分:0)
第一
$ npm install --save multer
然后在app.post函数之前添加multer中间件:
app.use(require('multer')({dest : __dirname }));
app.post("/getusrfile",function(req,res){
var filePath = req.files.fil.path;
fs.readFile(filePath, function (err, data) {
// ...
});
});
测试:
it('should respond "OK 200" to POST request with file payload',function(done){
var filePath = path.join(__dirname,'test.txt');
request(app)
.post('/getusrfile')
.attach('fil',filePath)
.expect(200)
.end(function(err,res){
expect(err).to.not.exist;
done();
});
});