axios
axios๋ JavaScript์ HTTP ํด๋ผ์ด์ธํธ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ก, ๋ธ๋ผ์ฐ์ ์ Node.js ํ๊ฒฝ์์ ๋ชจ๋ ์ฌ์ฉํ ์ ์์ต๋๋ค. axios๋ Promise๋ฅผ ๊ธฐ๋ฐ์ผ๋ก ํ ๊ฐ๋ ฅํ ๊ธฐ๋ฅ๊ณผ ๋ค์ํ ์ค์ ์ต์
์ ์ ๊ณตํ์ฌ ๋คํธ์ํฌ ์์ฒญ์ ๋ณด๋ค ํธ๋ฆฌํ๊ฒ ๋ค๋ฃฐ ์ ์๋๋ก ๋์์ค๋๋ค.
Axios ๊ธฐ๋ณธ ๊ตฌ์กฐ
// ๊ธฐ๋ณธ์ ์ธ GET ์์ฒญ
axios.get('https://jsonplaceholder.typicode.com/todos/1')
.then(response => {
// ์ฑ๊ณต์ ์ธ ์๋ต ์ฒ๋ฆฌ
console.log(response.data);
})
.catch(error => {
// ์ค๋ฅ ์ฒ๋ฆฌ
console.error('Request failed:', error);
});
JavaScript
๋ณต์ฌ
Axios์ ์ฃผ์ ๋ฉ์๋
๋ฉ์๋ | ์ค๋ช
|
axios.get(url, config) | ์ง์ ๋ URL์์ ๋ฐ์ดํฐ๋ฅผ ์กฐํํ๋ ์์ฒญ์ ํฉ๋๋ค. |
axios.post(url, data, config) | ์ง์ ๋ URL๋ก ๋ฐ์ดํฐ๋ฅผ ์ ์กํ์ฌ ์๋ก์ด ๋ฆฌ์์ค๋ฅผ ์์ฑํฉ๋๋ค.
data ์ ์์ฒญ ๋ณธ๋ฌธ ๋ฐ์ดํฐ๋ฅผ ๋ด๋๋ค. |
axios.put(url, data, config) | ์ง์ ๋ URL์ ๋ฆฌ์์ค๋ฅผ ์ ์ฒด์ ์ผ๋ก ์
๋ฐ์ดํธํฉ๋๋ค.
data ์ ์์ฒญ ๋ณธ๋ฌธ ๋ฐ์ดํฐ๋ฅผ ๋ด๋๋ค. |
axios.delete(url, config) | ์ง์ ๋ URL์ ๋ฆฌ์์ค๋ฅผ ์ญ์ ํฉ๋๋ค. |
axios.patch(url, data, config) | ์ง์ ๋ URL์ ๋ฆฌ์์ค๋ฅผ ๋ถ๋ถ์ ์ผ๋ก ์
๋ฐ์ดํธํฉ๋๋ค. |
axios.head(url, config) | ์ง์ ๋ URL์ ํค๋ ์ ๋ณด๋ฅผ ๊ฐ์ ธ์ต๋๋ค. |
Axios ์ค์ ๊ฐ์ฒด(config)์ ์ฃผ์ ์์ฑ
โข
url: ์์ฒญ์ ๋ณด๋ผ URL
โข
method: HTTP ๋ฉ์๋ (GET, POST, PUT, DELETE ๋ฑ)
โข
params: URL์ ์ถ๊ฐํ ์ฟผ๋ฆฌ ๋งค๊ฐ๋ณ์
โข
data: ์์ฒญ ๋ณธ๋ฌธ(body)์ ํฌํจ๋ ๋ฐ์ดํฐ (POST, PUT ๋ฑ์์ ์ฌ์ฉ)
โข
headers: ์์ฒญ ํค๋ ์ค์
โข
timeout: ์์ฒญ์ด ์ผ๋ง๋ ๊ธธ์ด์ง ์ ์๋์ง ์ค์
Axios์ ๋ฐํ๊ฐ
axios ๋ฉ์๋๋ Promise๋ฅผ ๋ฐํํฉ๋๋ค. ์ด Promise๋ ์ฑ๊ณต์ ์ธ ์๋ต์ผ ๊ฒฝ์ฐ response ๊ฐ์ฒด๋ฅผ resolveํ๊ณ , ์ค๋ฅ๊ฐ ๋ฐ์ํ ๊ฒฝ์ฐ error ๊ฐ์ฒด๋ฅผ rejectํฉ๋๋ค.
๋ชจ๋์ด ์ค์น๋์ด ์์ด์ผํ๋ค.
npm install axios
JavaScript
๋ณต์ฌ
์์ ์ฝ๋ - get
// axios ๋ผ์ด๋ธ๋ฌ๋ฆฌ ๊ฐ์ ธ์ค๊ธฐ
const axios = require('axios');
// GET ์์ฒญ ๋ณด๋ด๊ธฐ
axios.get('https://httpbin.org/get')
.then(response => {
// ์ฑ๊ณต์ ์ธ ์๋ต ์ฒ๋ฆฌ
console.log(response.data);
})
.catch(error => {
// ์ค๋ฅ ์ฒ๋ฆฌ
console.error('Request failed:', error);
});
JavaScript
๋ณต์ฌ
์์ ์ฝ๋ - post
const axios = require('axios')
const url = 'https://httpbin.org/post'
const data = {
name : '๊น์กฐ์',
age : 25
}
const headers = {
'ContentType' : 'application/json'
}
// axios POST ์์ฒญ
axios.post(url, data, headers)
.then(response => {
console.log(`data : ${response.data}`);
// โญ console.dir(๊ฐ์ฒด)
// : ๊ฐ์ฒด๋ฅผ ํผ์ณ์ ๋ก๊ทธ๋ฅผ ์ถ๋ ฅํด์ค๋ค.
console.dir(response.data);
})
.catch(error => {
console.log(`error : ${error}`);
})
JavaScript
๋ณต์ฌ