Rumah > Artikel > hujung hadapan web > axios发送请求时springmvc无法接受参数
这次给大家带来axios发送请求时springmvc无法接受参数,处理axios发送请求时springmvc无法接受参数的注意事项有哪些,下面就是实战案例,一起来看一下。
解决方法有以下三种:
1、设置axios的默认请求头
//设置全局的 axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'; var instance = axios.create({}) // 这样创建出来的 只需要: instance.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
2、使用URLSearchParams来构建参数
var params = new URLSearchParams(); params.append("username", _this.username); params.append("password", _this.password); axios.post("/service/login", paramsOfJson ).then(function (response) { console.log(response); }).catch(function (error) { console.log(error); })
3、后台使用@requestBody接收
@PostMapping(value = "/login") public String testLogin(@RequestBody Map dataMap)
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
Atas ialah kandungan terperinci axios发送请求时springmvc无法接受参数. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!