[Vuejs]-Async await axios post data with vue js, the data send is different between vue and postmant

0👍

the problem is solved, i just change

var postData    = qs.parse(body);

to

var postData    = JSON.parse(body);

thanks for helping

Leave a comment