Intro Axios์ catch() ๋ฌธ์์ Status Code ๋ฅผ ๋ฐ์์ค๋ ๋ฐฉ๋ฒ์ ๋ํด ์์๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค. ์๋ฅผ ๋ค์ด ๋ค์์ axios ์์ฒญ์ด ์๋ค๊ณ ๊ฐ์ ํด ๋ด ์๋ค. axios .get('foo.example') .then((response) => {}) .catch((error) => { console.log(error); //Logs a string: Error: Request failed with status code 404 }); ๋ค์์ ๋ฐฉ๋ฒ์ผ๋ก console.log ๋ก ์ฐ์ด๋ณผ ๊ฒฝ์ฐ ๋จ์ string ๋ง ๋ฐํํ๊ฒ ๋ฉ๋๋ค. return ๋ object๋ฅผ ๋ฐ๊ณ ์ถ์ ๊ฒฝ์ฐ ์ด๋ป๊ฒ ํด์ผ ํ ๊น์? How to solve the problem axios.get('/foo') .catch(functio..