Answer the question
In order to leave comments, you need to log in
How to upload files along with json data?
There is a form
Name
Date
Password
Avatar
server.js
fileUpload = require('express-fileupload');
app.use( fileUpload() );
app.use( bodyParser.json() );
app.use( bodyParser.urlencoded({ extended: false }) );
....
publicRouter.put('/finishUserRegistration', ctrlAuth.finishUserRegistration);
module.exports.finishUserRegistration = function(req, res) {
console.log(req.files)
};
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question