[Vuejs]-Retrieve an array of from vuejs and add it to session variable

0👍

You cannot send your JSON data that way. Please use an http POST method and send the data into the body of the request.

axios.post("http://localhost:8080/SetTablePlayers/", this.TablePlayers)

of course you have to adapt also your server code.

GET method should be used to obtain something from the server instead.

Leave a comment