Put, Patch 차이점 / axios를 쓰는 이유

laluniax·2023년 12월 5일
0

REACT

목록 보기
19/20
post-thumbnail

📖 Put , patch 차이점

put : 덮어쓰기 / Patch : 수정

put은 기존의 것을 찾아서 아예 정보를 갈아끼워버린다.
patch는 기존의 것을 찾아서 일부만 수정해준다

Url 다음에는 뭘 수정할지 명시해주는 게 중요함
Delete도 !! 뭘 삭제할지 명시해주는게 중요!

꼭 파라미터 명시해줘야함

🤔 왜 fetch말고 axios를 쓰는가 ?

  • axios가 장점이 많아서 쓴다
    자세한건 나중에 수정 예정
import commentsAxios from "./axios/comments";
import "./App.css";
import axios from "axios";

function App() {
  const handleGetCommentsButtonClick = async () => {
    // 
    commentsAxios.get("/1").then((response) => {

    }
  }
  const handleGetPostsButtonClick = () => {
    //
  }
  const handleGetProfileButtonClick = () => {
    //
  }

  return <div className="App">
    <button onClick={handleGetCommentsButtonClick}>GET COMMENTS</button>
    <button onClick={handleGetPostsButtonClick}>GET POSTS</button>
    <button onClick={handleGetProfileButtonClick}>GET PROFILE</button>
  </div>;
}

export default App;
profile
grow constantly

0개의 댓글