get 예시 및 이슈

Column
Tags

기본 사용 예시

 

GET 요청에서는 data 사용 X

 
The spec doesn't forbid sending a payload for a get request, however both xhr and fetch won't allow it so it is probably not possible to do this feature.
 
get 요청 시에 필요한 인자는 params로 넘겨야함.
params에 노출되는 것이 싫고 data로 전달하고 싶다면 post 메소드로 변경하면 됨.
 
axios.get('/api/updatecart', { headers:{ ... }, params: { product: this.product } }).then(...)