반응형
[ axios에 header 넣기 ]
1. axios.post에 header
axios.post('/api',
{
name: name
},
{
headers: {
Authorization: token,
},
}
)
2. axios.get에 header
axios.get('api', {
params: { name: name },
headers: {
Authorization: token,
},
})
3. axios.put에 header
axios.put('api',
{
name: name
},
{
headers: {
Authorization: token,
},
}
)
4. axios.delete에 header
axios.delete('api', {
headers: {
Authorization: token,
},
data: { name: name },
})
반응형
'STUDY' 카테고리의 다른 글
[Angular] @angular/common/http (0) | 2022.02.06 |
---|---|
[Angular] 프로젝트 시작, props, emit (0) | 2022.02.05 |
[ANIMATION] animation 속성 (0) | 2021.11.22 |
[:nth-child] :nth-child 활용 (0) | 2021.11.20 |
[오류 해결] backface-visibility: hidden (0) | 2021.11.17 |