DELETE
1. 데이터를 삭제하는 기능
2. await axios.delete("url 주소" * id);
1. PATCH: 전체 데이터를 새롭게 교체하는 방식
const { default: axios } = require("axios");
axios
email: "newalice@example.com",
})
.then((response) => {
// 서버 응답
console.log(response.data);
})
.catch((error) => {
// 에러 처리
console.error(error);
});
2. PUT: 일부 데이터만 수정할 때 사용하는 방식
const { default: axios } = require("axios");
axios
name: "Alice",
age: 25,
email: "alice@example.com",
})
.then((response) => {
// // 서버 응답
console.log(response.data);
})
.catch((error) => {
// // 에러 처리
console.error(error);
});
'내일배움캠프 동영상 강의 > 내배캠_React 심화' 카테고리의 다른 글
axios (interceptor, Custom Instance, interceptors) (0) | 2024.10.30 |
---|---|
axios (GET, POST) (1) | 2024.10.30 |
json server (0) | 2024.10.30 |
HTTP (4) | 2024.10.30 |
promise all, async / await (0) | 2024.10.30 |