
와플 스튜디오 루키 과정 복습하기 - 2: fetch 와 supabase 기본 세팅
·
공부/코딩
First, I'm going to use JSONPlaceholder Guide for easy data fetching. (https://jsonplaceholder.typicode.com/guide/) To test it, add the following fetch and console.log code to the landing page: fetch('https://jsonplaceholder.typicode.com/posts/1') .then((response) => response.json()) .then((json) => console.log(json)); Therefore we get like this picture. Let's fetch all the posts data an..