使用Javascript:
var test_request = new XMLHttpRequest();
test_request.open("POST","/testupload",true);
test_request.send(image.sourceFile);
Node.js表达:
app.post("/testupload", function(req, res){
where is the image.sourceFile in req?
});
req中的image.sourceFile在哪里? req.body显示{},我怎样才能获得图像?
答案 0 :(得分:0)
如果您想要POST
请求的表单数据,则应首先尝试使用body-parser
中间件。
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true, type: 'application/x-www-form-urlencoded' }));
现在您可以在req.body
中获取表单数据;