[Vuejs]-How to send form data with other additional data to a node server from vue

0๐Ÿ‘

I was researching a bit and I found this StackOverflow thread talking about formdata.

They were mentioning the headers, so add:

'Content-Type': 'multipart/form-data'

to your headers and try that.

Hope it works then ๐Ÿ™‚

Leave a comment