fetch1 Fetch API 보통 axios를 쓰지만 그래도 fetch를 쓴다면 const response = await fetch( url ) response 객체 프로퍼티 - headers - ok ( 200 - 299 사이면 true ) - status - statusText - redirected ... - body 메서드 - json( ) ... // Function to do an Ajax call const doAjax = async () => { const response = await fetch('Ajax.php'); // Generate the Response object if (response.ok) { const jsonValue = await response.json(); // Get JSON value fr.. 2021. 3. 5. 이전 1 다음