Before ํญ์ jQuery์ ajax๋ฅผ ์ฌ์ฉํ์ฌ ๋น๋๊ธฐ ์์ฒญ์ ์ฃผ๊ณ ๋ฐ์๋๋ฐ ์์ฆ์๋ ๋๋ถ๋ถ์ ๋ธ๋ผ์ฐ์ ์์ fetch()๋ฅผ ์ง์ํ๋ค๋ ๊ธ์ ๋ณด์์ต๋๋ค. ๊ทธ๋์ ์ ๋ ๊ธฐ๋ณธ์ ์ฌ์ฉํ๋ $.ajax()๋ฅผ fetch๋ฅผ ์ฌ์ฉํ์ฌ ๋ฐ๊ฟ ๋ณด๊ธฐ๋ก ํ์์ต๋๋ค. $.ajax | GET ๊ธฐ์กด ์ฝ๋ $.ajax({ url: getContextPath() +"/restapi/member/memberList" , type: 'get', success: function(res) { console.log("์ฑ๊ณต"); console.log(res); }, error: function(xhr, error, msg) { console.log(xhr); console.log(error); console.log(msg); ..