반응형
www.youtube.com/watch?v=cuEtnrL9-H0&ab_channel=Academind
console.log(fetch('https://reqres.in/api/users'))
fetch('https://reqres.in/api/users')
.then(res => console.log(res))
fetch('https://reqres.in/api/users')
.then(res => res.json())
.then(data => console.log(data))
fetch('https://reqres.in/api/users/23')
.then(res => res.json())
.then(data => console.log(data))
fetchAPI catch 처리
fetch('https://reqres.in/api/users/23')
.then(res => res.json())
.then(data => console.log(data))
.catch(error => console.log('ERROR'))
fetch('https://reqres.in/api/users/23')
.then(res => {
if(res.ok) {
console.log('SUCCESS')
} else {
console.log('Not Successful')
}
})
.then(data => console.log(data))
.catch(error => console.log('ERROR'))
fetch('https://reqres.in/api/users/')
.then(res => {
if(res.ok) {
console.log('SUCCESS')
} else {
console.log('Not Successful')
}
})
.then(data => console.log(data))
.catch(error => console.log('ERROR'))
fetch('https://reqres.in/api/users/', {
method: 'POST',
body: {
name: 'User 1'
}
}).then(res => {
return res.json()
})
.then(data => console.log(data))
.catch(error => console.log('ERROR'))
fetch('https://reqres.in/api/users/', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'User 1'
})
}).then(res => {
return res.json()
})
.then(data => console.log(data))
.catch(error => console.log('ERROR'))
반응형
'DEVELOPMENT' 카테고리의 다른 글
[VSC] 서버 연결 extension remote development (0) | 2021.03.07 |
---|---|
NPM 관리하기 (0) | 2021.03.04 |
Express tutorial (windows) - express : 이 시스템에서 스크립트를 실행할 수 없으므로... (0) | 2021.02.22 |
이클립스 zulu build path설정 (0) | 2021.02.16 |
git conflict(충돌) 해결하기 (1) | 2021.02.13 |
댓글