ISSUE02 :: Vue.js AXIOS 415 error
Spring boot 에서 restful로 통신하는데 415 error 가 발생하는 경우가 있습니다.
이 에러가 발생한 이유는 response로 받아오는 headers 에 `Content-Type` 이 `application/json` 이 아니기 때문입니다. - google chrom network 를 보면 확인해보실 수 있습니다.
따라서 문제를 해결하기 위해서는
1
2
3
4
5
6
7
|
let options = {
headers: { 'Content-Type': 'application/json' }
, url: '/localhost:8080'
, method: 'post'
, data: JSON.stringify(arr)
}
let response = await axios(options)
|
cs |
작성 해서 통신해야 합니다.
'Toy-Project > ISSUE' 카테고리의 다른 글
댓글
이 글 공유하기
다른 글
-
ISSUE03 :: Found a swap file by the name "~/.bashrc.swp"
ISSUE03 :: Found a swap file by the name "~/.bashrc.swp"
2020.02.25 -
ISSUE03 :: Vue에서 v-for 과 v-if 를 같이 쓰면 발생하는 Issue, [You should not mix 'v-for' with 'v-if']
ISSUE03 :: Vue에서 v-for 과 v-if 를 같이 쓰면 발생하는 Issue, [You should not mix 'v-for' with 'v-if']
2020.02.09 -
ISSUE01 :: AXIOS 통신 중 CORS(Cross Origin Resource Sharing) 발생 시
ISSUE01 :: AXIOS 통신 중 CORS(Cross Origin Resource Sharing) 발생 시
2020.02.04 -
SSATUBE04 :: git branch -d <BRANCH>: Fatal - Couldn't look up commit object for HEAD
SSATUBE04 :: git branch -d <BRANCH>: Fatal - Couldn't look up commit object for HEAD
2019.12.25