Answer the question
In order to leave comments, you need to log in
Is it possible to do node/express/multer file upload via Postman?
Whatever one may say, it betrays
Multipart: Boundary not found
Answer the question
In order to leave comments, you need to log in
I found the answer to my own question.
To upload a file using Postman, you need the field where you upload the file
to have the name that you wrote in the code. Encoding can be omitted
app.post('/profile', upload.single('avatar'), function (req, res, next) {
console.log (req.headers);
console.log (req.file);
// req.file is the `avatar` file
// req.body will hold the text fields, if there were any
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question