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 ?
No comments:
Post a Comment