5/22

justyoon·2023년 5월 23일
0

https://www.youtube.com/watch?v=IKO8Dy_YsiY

.then (이름이 없는 익명의 함수)
response 객체
response.status
상태처리는 백이든 프론트든 중요한 듯

// base fetch structure //

fetch('API url here', {
    headers: {
        // add headers to the request object
    },
})
    .then((response) => response.json())
    .then((response) => {
        console.log(response)
    })

// basically dosen't need to specify GET method (without POST, PUT, DELETE) //
// //
fetch('html').then(function(response) {
  response.text().then().then(function(text) {
    document.queySelector('article').innerHTML = text;
  })
})


// Asynchronous // 아래 두 코드는 같은
function callbackme() {
  console.log('response end');
}
callbackme = function () {
  console.log('response end');
};

// //
fetch('html').then(function (response) {
  if (response.status == '404') {
    alert('Not found');
  }
});
console.log('hello');
console.log('world');
profile
with gratitude, optimism is sustainable

0개의 댓글