[Vuejs]-I can't post my file on the server with formData from the state

0👍

Try this axios post in storeExcerise method.

axios.post('exercises',state.selectedExercise,{
          headers: { 'Content-Type': undefined},
        }).then(function (response) {
          if (response.data.ok) {
          }
        }.bind(this));

This is working fine for me while uploading file to server.

Leave a comment