api 를 호출해 더미데이터 받아오기
2022. 12. 14. 21:22ㆍ프로그래밍/JavaScript
- 목차
fetch('https://jsonplaceholder.typicode.com/posts')
.then((response) => response.json())
.then((posts) => console.log(posts));
데이터 100개를 받아올 수 있음
자세한 설정은 참고 사이트에서 ...
참고