0%
app.js 코드
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| const fetchTodos = () => { const xhr = new XMLHttpRequest(); xhr.open('GET', '/todos'); xhr.send();
xhr.onload = () => { if (xhr.status === 200) { console.log(JSON.parse(xhr.response)); setTodos(JSON.parse(xhr.response)); } else { console.error('Error', xhr.status, xhr.statusText); } }; };
|