전체 글 (127) 썸네일형 리스트형 [css] css 관련 요즘 추세 볼 수 있는 사이트 https://2021.stateofcss.com/en-US/technologies/pre-post-processors/ The State of CSS 2021: Pre-/Post-processors You can click on any technology name to get extra details and a more in-depth look at its related data. 2021.stateofcss.com [Javascript] async / await 비동기 1) async 앞에 있으면 promise와 같다 function myFunc() { return 'func'; } async function myAsync() { return 'async'; } console.log(myFunc()); console.log(myAsync()); 결과 : 2) async 안의 함수에 return이 myAsync 호출하는 then의 result값에 찍힌다 async function myAsync() { return 'async'; } myAsync().then((result)=> { console.log(result); }); 결과 : async 3) function delayP(sec) { return new Promise((resolve, reject)=> { setT.. [Ajax] Ajax란 Ajax 서버에 새로고침 없이 요청을 할 수 있게 도와줌 -jQuery 설치해서 $.ajax() 사용 -axios 설치해서 axios.get() 사용 -쌩자바스크립트 fetch() 사용 GET 주소창에 URL 때려박는 요청 특정페이지/자료 읽기 POST 로그인 할때, 아이디 비밀번호 같은 서버로 중요 정보 전달 PUT 원래 GET/POST 요청 할 때마다 항상 새로고침되는데 Ajax 는 새로고침 없이 요청 이전 1 ··· 19 20 21 22 23 24 25 ··· 43 다음