fetch 페치란
fetch란 promise 기반 ES6+에 추가된 javascript 내장 함수 별도의 라이브러리를 설치할 필요는 없다 모든 브라우저에서 호환되지는 않으며, 브라우저 버전이 낮을 경우 polyfill을 적용하여 사용해야 한다 구성 fetch(url, { method: 'GET' //통신방식, GET, POST, PUT, DELETE 등 mode: 'cors', // no-cors, cors, *same-origin cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached credentials: 'same-origin', // include, *same-origin, omit headers: { 'Content-Type': ..
2023.03.29