본문 바로가기
프로그래밍

[Axios] Error 415 Content-Type 수정 필요

by 개발자신입 2024. 5. 13.
반응형

2024-05-13T19:07:05.618+09:00  WARN 4376 --- [wizian] [nio-3000-exec-5] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type 'application/x-www-form-urlencoded;charset=UTF-8' is not supported]

 

axios 부분에 아래 코드를 추가해준다..... 

 

  methods: {
    fetchTestResult(answers) {
      axios.post('http://localhost:3000/api/getTestResult', JSON.stringify(answers), {
  headers: {
    'Content-Type': 'application/json'
  }
})
반응형

댓글