The following files are my attempt at submitting a POST request to my nodejs (express) server. The req.body does not populate any sort of data from my form. I have done ma
You're sending a multipart/form-data request but you're not using a multipart/form-data-compatible body parsing middleware. Some example middleware modules that do handle that format are multer and multiparty/formidable.