반응형
fetch 예제
문법
fetch( url, { options } )
예제1 - 기본 사용
fetch("https://jsonplaceholder.typicode.com/todos")
.then(response => response.json())
.then(json => console.log(json))
예제2 - 기본사용의 출력 내용
fetch("https://jsonplaceholder.typicode.com/todos/1")
.then(response => response.json())
.then(json => console.log(json))
// console output
{
id: 1,
title: "delectus aut autem",
complete: true,
userId:1
}
예제3 - 옵션에 데이터를 입력하는 예제 JSON.stringify
fetch("https://jsonplaceholder.typicode.com/todos", {
method: "POST",
body: JSON.stringify({
title: "New Todo",
completed: false,
userId: 2
}),
headers: {
"Content-type": "application/json"
}
})
.then(response => response.json())
.then(json => console.log(json))
// console output
{
id: 201,
title: "New Todo",
completed: false,
userId: 2
}
반응형
'개발 > javascript' 카테고리의 다른 글
[javascript] Async / Await 예제 (0) | 2021.01.18 |
---|---|
[javascript] Promiss 예제 (0) | 2021.01.18 |
[javascript] Spread Operator (스프레드 연산자) 예제 (0) | 2021.01.18 |
[javascript] Closures 예제 (0) | 2021.01.18 |
[javascript] 원하는 범위의 Random Number 생성 (0) | 2021.01.18 |
댓글