I use axios for calling API (in front-end). I use the method \"GET\" :
import axios from \'axios\'; import querystring from \'querystring\'; var url = \"m
So the way to solve this npm install qs.
npm install qs
Then:
import qs from 'qs' function send(params) { return axios.post('/api/create/', qs.stringify(params)) }