欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决axios发送post请求返回400状态码的问题

程序员文章站 2022-06-11 18:18:57
今天在用 发送一个跨域的post请求时,遇到了一个坑:uncaught (in promise) error: request failed with status co...

今天在用 发送一个跨域的post请求时,遇到了一个坑:uncaught (in promise) error: request failed with status code 400。

前台代码如下:

axios({
 method: "post",
 url: "http://localhost:8080/employee/testpost",
 data: {
  username: '234234',
  password: '4565'
 }
}).then((res) => {
 console.log(res.data);
})

后台代码如下:

@crossorigin
@postmapping("/employee/testpost")
@responsebody
public result testpost(@requestparam(value = "username", required = true) string username,
     @requestparam(value = "password", required = true) string password) {
 system.out.println(username + " , " + password);
 result json = new result();
 json.setresult(1);
 return json;
}

而当我在postman上发送post请求时就能成功获得返回数据。困扰了很久,才发现是请求头的问题。axios请求头的 content-type 默认是 application/json,而postman默认的是 application/x-www-form-urlencoded。我这里采取的解决办法是改变后台的接收方式:

@crossorigin
@postmapping("/employee/testpost")
@responsebody
public result testget(@requestbody map map) {
 system.out.println(map.get("username") + " , " + map.get("password"));
 result json = new result();
 json.setresult(1);
 return json;
}

这样数据就成功返回了!

以上这篇解决axios发送post请求返回400状态码的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。