Nodejs CRUD + Test using Postman

后端 未结 3 820

Product create - Test I was able to create a category, however when creating a product i tested it out using postman and got error: \"\", then i added the code which requires al

3条回答
  •  北恋
    北恋 (楼主)
    2021-01-27 15:20

    your problem is on setting content type in postman. you send form-data to the server but your server not decoded it. by default, your server gets x-www-form-urlencoded and if you set postman on x-www-form-urlencoded your problem is gone. you must use form-data for upload file

提交回复
热议问题