req.body not populating with form data

前端 未结 2 705
栀梦
栀梦 2021-01-20 04:11

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

2条回答
  •  一整个雨季
    2021-01-20 05:11

    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.

提交回复
热议问题