Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- https://jcon.tistory.com/189
- https://aws.amazon.com/ko/docker/
- https://hi-zini.tistory.com/entry/%EB%B9%84%EB%8F%99%EA%B8%B0%EC%A0%81-%EB%B0%A9%EC%8B%9D-%EC%B2%98%EB%A6%AC-%EB%B0%A9%EB%B2%95-Callback-Promise-async-await
- https://sewonzzang.tistory.com/22
- https://goodgid.github.io/HTTP-Communicate-Process/
- https://joshua1988.github.io/web-development/javascript/promise-for-beginners/
- https://joshua1988.github.io/web-development/javascript/js-async-await/
- https://appmaster.io/ko/blog/rest-apiran-mueosimyeo-dareun-yuhyeonggwa-eoddeohge-dareungayo
- https://siyoon210.tistory.com/130
- https://subicura.com/2017/01/19/docker-guide-for-beginners-1.html
Archives
- Today
- Total
목록https://joshua1988.github.io/web-development/javascript/js-async-await/ (1)
“Connecting the dots”
async / await
async/await -비동기 처리 방식- 자바스크립트는 비동기처리가 필수적이다 비동기 처리는 그 결과가 언제 반환될지 알수 없기 때문에 동기시으로 처리하는 기법 대표적으로 SetTimeout,callback,promise 세가지 모두 비동기 코드를 동기식으로 작성 async와await 는 이런 문제들을 해결함과 동시에 사용법에 있어서도 훨씬 단순 문법 promise 문법 function p() { return new Promise((resole,reject)=>{ resolve('hello'); }); } p().then(n) => console.log(n); async문법 async function p2(){ return 'hello2'; } async로 지정해주면 promise를 리턴하는 함수로 만..
2주차
2022. 11. 7. 14:41