Fetch

๐Ÿ“„ Fetch

: ์›๊ฒฉ API๋ฅผ ํ˜ธ์ถœํ•  ์ˆ˜ ์žˆ๋Š” ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ ๋‚ด์žฅ ํ•จ์ˆ˜

๐Ÿ“„ Fetch ์‚ฌ์šฉ๋ฒ•

Fetchํ•จ์ˆ˜๋Š” ๋‘๊ฐ€์ง€์˜ ์ธ์ž๋ฅผ ๋ฐ›์Šต๋‹ˆ๋‹ค.

  1. URL
  2. ์˜ต์…˜๊ฐ์ฒด

์ธ์ž๋ฅผ ๋ฐ›์•„ Promise๊ฐ์ฒด๋ฅผ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค.

๋ฐ˜ํ™˜๋œ ๊ฐ์ฒด๋Š” APIํ˜ธ์ถœ์ด ์„ฑ๊ณตํ–ˆ์„ ๋•Œ ์‘๋‹ต(response) ๊ฐ์ฒด๋ฅผ resolveํ•˜๊ณ  ์‹คํŒจํ–ˆ์„ ๋•Œ๋Š” ์˜ˆ์™ธ(error)๊ฐ์ฒด๋ฅผ rejectํ•ฉ๋‹ˆ๋‹ค.

fetch(url, options)
  .then((response) => response.json())
  .catch((error) => console.log("error:", error));
  • Response: HTTP ์‘๋‹ต ์ „์ฒด๋ฅผ ๋‚˜ํƒ€๋‚ด๋Š” ๊ฐ์ฒด. JSON ๋ณธ๋ฌธ ์ฝ˜ํ…์ธ ๋ฅผ ์ถ”์ถœํ•˜๊ธฐ ์œ„ํ•ด์„œ๋Š” json()๋ฉ”์„œ๋“œ๋ฅผ ํ˜ธ์ถœํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค.

๐Ÿ“„ GET ํ˜ธ์ถœ: ๋ฐ์ดํ„ฐ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ

fetchํ•จ์ˆ˜์˜ ๊ธฐ๋ณธ์ ์ธ ๋™์ž‘์€ GET์ž…๋‹ˆ๋‹ค.

fetch("https://jsonplaceholder.typicode.com/posts/1").then((response) =>
  console.log(response)
);

โœ” ๊ฒฐ๊ณผ

Response {status: 200, ok: true, redirected: false, type: "cors", url: "https://jsonplaceholder.typicode.com/posts/1", โ€ฆ}

์‘๋‹ต(response) ๊ฐ์ฒด๋Š” json๋ฉ”์„œ๋“œ๋ฅผ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค.

json()์„ ํ˜ธ์ถœํ•˜๋ฉด ์‘๋‹ต ๊ฐ์ฒด๋กœ๋ถ€ํ„ฐ JSON ํฌ๋ฉง์˜ ์‘๋‹ต์„ ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ ๊ฐ์ฒด๋กœ ๋ณ€ํ™˜ํ•ด์„œ ์–ป์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.

// json()์„ ํ™œ์šฉํ•˜์—ฌ ์‘๋‹ต๊ฐ์ฒด๋ฅผ ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ ๊ฐ์ฒด๋กœ ๋ณ€ํ™˜
fetch("https://jsonplaceholder.typicode.com/posts/1")
  .then((response) => response.json())
  .then((data) => console.log(data));

โœ” ๊ฒฐ๊ณผ

{
  "userId": 1,
  "id": 1,
  "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
  "body": "quia et suscipitโ†ตsuscipit recusandae consequuntur โ€ฆstrum rerum est autem sunt rem eveniet architecto"
}

๐Ÿ“„ POST ํ˜ธ์ถœ: ๋ฐ์ดํ„ฐ ์ƒ์„ฑํ•˜๊ธฐ

POST๋Š” ์›๊ฒฉ API์—์„œ ๊ด€๋ฆฌํ•˜๊ณ  ์žˆ๋Š” ๋ฐ์ดํ„ฐ๋ฅผ ์ƒ์„ฑํ•  ๋•Œ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค.

  • method ์˜ต์…˜์„ POST๋กœ ์ง€์ •ํ•œ๋‹ค.
  • headers์˜ต์…˜์„ ํ†ตํ•ด JSONํฌ๋ฉง์„ ์‚ฌ์šฉํ•œ๋‹ค๊ณ  ์•Œ๋ ค์ค€๋‹ค.
  • ์š”์ฒญ ์ „๋ฌธ์„ JSON ํฌ๋ฉง์œผ๋กœ ์ง๋ ฌํ™”ํ•˜์—ฌ body์˜ต์…˜์— ์„ค์ •ํ•ด์ค€๋‹ค.
fetch("https://jsonplaceholder.typicode.com/posts", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    title: "Test",
    body: "I am testing!",
    userId: 1,
  }),
}).then((response) => console.log(response));

โœ” ๊ฒฐ๊ณผ: ์‘๋‹ต์ฝ”๋“œ๊ฐ€ 201 Created

Response {type: "cors", url: "https://jsonplaceholder.typicode.com/posts", redirected: false, status: 201, ok: true, โ€ฆ}

// json๋ฉ”์„œ๋“œ๋กœ ์‘๋‹ต๊ฐ์ฒด๋ฅผ ํ˜ธ์ถœํ–ˆ์„ ๋•Œ(response.json())
{title: "Test", body: "I am testing!", userId: 1, id: 101}

๐Ÿ“„ PUT, DELETE: ๋ฐ์ดํ„ฐ ์ˆ˜์ •, ์‚ญ์ œํ•˜๊ธฐ

PUT๊ณผ DELETE๋Š” ๋ฐ์ดํ„ฐ๋ฅผ ์ˆ˜์ •ํ•˜๊ฑฐ๋‚˜ ๋ฐ์ดํ„ฐ๋ฅผ ์‚ญ์ œํ•  ๋•Œ ์‚ฌ์šฉ๋ฉ๋‹ˆ๋‹ค.

// PUT
fetch("https://jsonplaceholder.typicode.com/posts/1", {
  method: "PUT",
  headers: {
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    title: "Test",
    body: "I am testing!",
    userId: 1,
  }),
})
  .then((response) => response.json())
  .then((data) => console.log(data));

โœ” ๊ฒฐ๊ณผ

  {title: "Test", body: "I am testing!", userId: 1, id: 1}

DELETE๋Š” ๋ณด๋‚ผ ๋ฐ์ดํ„ฐ๊ฐ€ ์—†์–ด header์™€ body์˜ต์…˜์ด ํ•„์š”ํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค.

// DELETE
fetch("https://jsonplaceholder.typicode.com/posts/1", {
  method: "DELETE",
})
  .then((response) => response.json())
  .then((data) => console.log(data));

โœ” ๊ฒฐ๊ณผ

{
}

๐Ÿ“„ fetch ํ•จ์ˆ˜ ์ปค์Šคํ…€ํ™” ํ•˜๊ธฐ

async function post(host, path, body, headers = {}) {
  const url = `https://${host}/${path}`;
  const options = {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      ...headers,
    },
    body: JSON.stringify(body),
  };
  const res = await fetch(url, options);
  const data = await res.json();
  if (res.ok) {
    return data;
  } else {
    throw Error(data);
  }
}

post("jsonplaceholder.typicode.com", "posts", {
  title: "Test",
  body: "I am testing!",
  userId: 1,
})
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

์ถœ์ฒ˜

Leave a comment