Saturday 8 April 2017

Cannot read property 'fileSize' of undefined

CODE:

var upload = multer({dest:"./uploads"});

app.post("/", upload.single(), function (req, res, next) {
        res.send(req.file.fileSize+"bytes");                     
});


QUESTION:

What have I done wrong ?



via Coder1000

No comments:

Post a Comment