[Vuejs]-How should I structure the backend response to a Vue.js upload?

0👍

send file to server with 'Content-Type': 'multipart/form-data' header in post method using axios as described here

use multer npm for handle uploading file to server .

example link here

Leave a comment