이번에는 springMVC가 post 요청을 보낼 때 매개변수를 받을 수 없는 이유와 post 요청springMVC를 보낼 때
주의사항이 무엇인지 알려드리겠습니다. 다음은 실제 사례입니다. 살펴보겠습니다. axios가 게시물 요청을 보낼 때, 요청을 분석한 결과, 요청 헤더의 콘텐츠 유형이 잘못된 것으로 나타났습니다. 일반적으로 application/
json이어야 합니다. 애플리케이션/x-www-form-urlencoded. 세 가지 해결 방법이 있습니다.
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';
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);
})
@PostMapping(value = "/login") public String testLogin(@RequestBody Map dataMap)
을 받습니다. 이 기사의 사례를 읽으신 후 방법을 마스터하셨다고 생각합니다. 더 흥미로운 정보를 보려면 PHP 중국어 웹사이트의 다른 관련 기사를 주목하세요!
추천 자료:
Koa2 프레임워크의 CORS를 사용하여 도메인 간 Ajax 요청을 완료하는 방법
jQuery+JSONP 도메인 간 요청을 구현하는 방법
위 내용은 post 요청을 보낼 때 springMVC가 매개변수를 받을 수 없는 이유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!