[Vuejs]-File cannot post with Vue.js + axios

0👍

You cannot do axios.post("/parser/upload"... as this will post to the frontend, you need to tell axios to post to the backend by doing

axios.post("https://localhost:3000/parser/upload"...

Leave a comment