반응형
Request API in Chrome Developer Tools ( Using the Fetch API )
[Get]
방법 1)
fetch('https://api.test.com/getMyId', {
method: 'GET',
headers: {'Content-type': 'application/json; charset=UTF-8' }
})
.then(res => res.json())
.then(console.log)
method: 'GET',
headers: {'Content-type': 'application/json; charset=UTF-8' }
})
.then(res => res.json())
.then(console.log)
방법 2)
const response = await fetch('https://api.test.com/getMyId', { method: "GET",
headers: {'Content-type': 'application/json; charset=UTF-8' }
})
console.log(await response.json())
headers: {'Content-type': 'application/json; charset=UTF-8' }
})
console.log(await response.json())
sample)
[Post]
방법 1)
fetch('https://api.test.com/modifyMyId', {
method: 'POST',
body: JSON.stringify({
title: 'foo',
body: 'bar',
userId: 1
}),
headers: {
'Content-type': 'application/json; charset=UTF-8'
}
})
.then(res => res.json())
.then(console.log)
method: 'POST',
body: JSON.stringify({
title: 'foo',
body: 'bar',
userId: 1
}),
headers: {
'Content-type': 'application/json; charset=UTF-8'
}
})
.then(res => res.json())
.then(console.log)
방법 2)
const response = await fetch('https://api.test.com/modifyMyId', { method: "POST", body: data })
console.log(await response.json())
console.log(await response.json())
반응형
'프로그램 > 자료&정보' 카테고리의 다른 글
크롬 개발자 도구에서 Service Worker 상태 정보 보기 (0) | 2023.04.26 |
---|---|
WebStorm trial reset (0) | 2018.07.13 |
윈도우10 beep 제거(Disable the system beep sound in Windows10) (0) | 2017.09.05 |
Unlock Jenkins 해결 방법 (0) | 2016.12.12 |
플러그인 골라 설치 방법 (0) | 2014.07.05 |