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
- es6
- css
- 디자인패턴
- Prototype
- flex-grow
- css variables
- css grid
- module wrapper function
- 정규표현식
- Node.js
- select by attribute
- JS
- just-one-small-sip
- 무료 백엔드 배포
- css 오버레이
- flex-shrink
- express-handlebars
- img 확대
- node
- Sass
- Engoo
- Object.create
- regExp
- close together
- flexbox
- Express
- shit-christmas
- ajax
- flex-basis
- improve-iq-by-up-to-10%!
Archives
- Today
- Total
ES7 Async & Await 본문
ES7에 추가된 기능으로 함수 앞에 async 키워드를 붙여 해당 함수가 Promise 객체를 리턴하도록 합니다.
따라서 비동기처리를 좀 더 간결하게 할 수 있습니다.
await 키워드는 async 키워드가 붙은 함수 내부에서 Promise 객체 앞에 쓰이며, 해당 Promise 객체가 비동기 작업을 완료할 때 까지 기다립니다.
async function myFunc() {
const promise = new Promise((resolve, reject) => {
setTimeout(() => resolve("Hello"), 1000);
});
const error = false;
if (!error) {
// 해당 promise 객체가 resolve 될 때까지 기다린다.
const res = await promise;
return res;
} else {
await Promise.reject(new Error("Something went wrong"));
}
}
myFunc()
.then(res => console.log(res))
.catch(err => console.error(err));
async function getUsers() {
// await response of the fetch call
const response = await fetch("https://jsonplaceholder.typicode.com/users")
// Only proceed first promise is resolved
const data = await response.json();
// only proceed second promise is resolved
return data;
}
getUsers()
.then(user => console.log(user));
'2021 프론트 엔드 로드맵 따라가기 > JS' 카테고리의 다른 글
Regular Expression in JS, 정규표현식 (0) | 2021.06.12 |
---|---|
Error Handling in JS (0) | 2021.06.12 |
ES6 Arrow Function (0) | 2021.06.09 |
ES6 Fetch API (0) | 2021.06.09 |
ES6 Promise (0) | 2021.06.09 |
Comments