[ javascript ] promise 를 async & await 로 쉽게 써보자 > javascript&jQuery

본문 바로가기
사이트 내 전체검색

javascript&jQuery

[ javascript ] promise 를 async & await 로 쉽게 써보자

페이지 정보

작성자 웹지기 댓글 0건 조회 3,366회 작성일 21-02-27 23:44

본문

promise 를 async & await 로 쉽게 써보자 

//promise는 chaning가 가능하다.

//체인이 많아 지면 복잡해진다.

//async await 동기식으로 순서를 작성하는 것 처럼 간편하게 작성가능

//기존에 존재하는 promise 위에 간단한 api를 제공하는데

//더 간편하게 제공하는 것을 syntactic sugar 

//프로토 타입을 베이스트로한 살짝 덭붙여진 것


//async & await

//clear style of using promise :)



//1. async(비동기)

function fetchUser() {

    //do network request in 10 secs....

    //return 'test';

    return new Promise((resolve, reject) => {

        //do network request in 10 secs....


        resolve('test');

    })

}

const user = fetchUser();

user.then(console.log);

console.log(user);


//이러한 promise를 async를 통해서 바로 실행이 가능하다.

//syntactic sugar

async function fetchUser2() {

    return 'test2';

}

const user2 = fetchUser2();

user2.then(console.log);

console.log(user2);


//2. await

function delay(ms) {

    //promise를 리턴하는데, 

    //정해진 ms(밀리세컨드)가 지나면 resolve를 호출하는 promise를 리턴하게 된다.

    return new Promise(resolve => setTimeout(resolve, ms));

}


async function getApple() {

    //await는 async 함수가 붙은 곳에서만 사용이 가능

    await delay(1000);

    //에러처리를 

    return 'apple';

}


async function getBanana() {

    await delay(1000);

    return 'banana';

}


/*

 * promise로 사용하는 함수를 만들어보자면

 * 이런식의 체이닝으로 구성이 가능하다.

function getBanana() {

    return delay(1000)

    .then(()=> 'banana');

}

*/



function pickFruits(){

    //이런식으로 promise도 중첩적으로 너무 체인닝을 하게 되면

    //콜백지옥이 되는건 마찬가지이다.

    return getApple()

    .then(apple =>{

        return getBanana()

        .then(banana => `${apple}+${banana}`);

    });

}

pickFruits().then(console.log);


//이녀석을 async를 통해서 간단하게 해줄 수 가 있다.

async function pickFruits2() {

    const apple = await getApple();

    const banana = await getBanana();

    return `${apple} + ${banana}`;

}

pickFruits2().then(console.log);



/*

 * 에러처리

async function getApple3() {

    await delay(1000);

    throw 'error';

    return 'apple3';

}

*/

async function getApple3() {

    await delay(1000);

    return 'apple3';

}


async function getBanana3() {

    await delay(1000);

    return 'banana3';

}


async function pickFruits3() {

    //여기서 사과와 바나나를 불러오는데 

    //사과에서 1초대기, 바나나에서 또 1초대기를 하게 된다.

    //이렇게 순차로 진행되면 비효율 적이다.

    //const apple = await getApple3();

    //const banana = await getBanana3();

    //이렇게 하면 1초만에 병렬적으로 두개를 실행하는게 가능해 진다.

    //이렇게 getApple3과 getBanana3이 서로 다른것을 불러올때는

    //서로의 관계가 없으므로 다른 방법으로 불러온다.

    //promise에서 제공하는 all이라는 api를 사용하면 된다.


    const applePromise3 = getApple3();

    const bananaPromise3 = getBanana3();

    const apple3 = await applePromise3;

    const banana3 = await bananaPromise3;


    return `${apple3} + ${banana3}`;

}

pickFruits3().then(console.log);


//3. useful Promise APIs 

function pickAllFruits() {

    return Promise.all([getApple3(), getBanana3()])

    .then(fruits => fruits.join('+++'));

}

pickAllFruits().then(console.log);


//먼저출력되는 값중 하나를 출력하는 함수

function pickOnlyOne() {

    return Promise.race([getApple3(), getBanana3()]);

}

pickOnlyOne().then(console.log);

추천0 비추천0

댓글목록

등록된 댓글이 없습니다.

Total 63건 1 페이지
  • 63 [ javascript ] CDATA 사용 이유
  • 1) CDATA로 감싼 JAVASCRIPT부분이 의도치 않게 XML Parser 에 의해 잘못 인식되는 것을 막기 위함. 2) XHTML이 아닌 HTML로 인식되는 경우에도 JAVASCRIPT가 문제없이 동작하도록 하기 위함. 3) javascript안에서 태그를 사용할 경우 CDATA 선을 해줘서 오류처리를 막기 위함. 사용예제 <script> //<![CDATA[ JAVASCRIPT //]]> </scri...
  • 웹지기 01-20 3292 0 0 댓글 0
  • 열람중 [ javascript ] promise 를 async & await 로 쉽게 써보자
  • promise 를 async & await 로 쉽게 써보자 //promise는 chaning가 가능하다. //체인이 많아 지면 복잡해진다. //async await 동기식으로 순서를 작성하는 것 처럼 간편하게 작성가능 //기존에 존재하는 promise 위에 간단한 api를 제공하는데 //더 간편하게 제공하는 것을 syntactic sugar //프로토 타입을 베이스트로한 살짝 덭붙여진 것 //async & await //clear style of ...
  • 웹지기 02-27 3367 0 0 댓글 0
  • 60 [ javascript ] promise
  • 'use strict' //promse 코드를 이용해서 비동기식으로 처리 하는 방법 //Promse is a JavaScript object for asynchronous operation. //state : pending(진행중) -> fulfilled(성공적으로 종료) or rejected(파일을 찾을 수 없거나 문제가 생기면) //Producer(원하는 기능을 수행해서 해당데이터를 만듬) vs Consumer(해당 데이터를 소비) //1. Producer //...
  • 웹지기 02-21 3301 0 0 댓글 0
  • 59 [ javascript ] 콜백지옥 - callback
  • 'use strict' //JavaScript is synchronous. //Execute the code block by orger after hoisting. //hoisting: var, function declearation //1. 동기와 비동기 console.log('1'); //동기식 setTimeout(function(){ //비동기식 console.log('2');//브라우져에서 함수에 의해 대기했다가 실행(비동기 실행방법) },1000); // 여기서 f...
  • 웹지기 02-21 3410 0 0 댓글 0
  • 58 [ javascript ] json 사용법
  • JSON //simplest data interchange format. //lightweight text-abased structure. //easy to read. //key-value pairs. //used for serialization and transmission of data between the network the network the network connection. //independent programming language and platform. //J...
  • 웹지기 02-21 3049 0 0 댓글 0
  • 57 [ javascript ] 유용한 함수들 10가지
  • javascript 유용한 함수들 10가지 https://youtu.be/3CUjtKJ7PJg // Q1. make a string out of an array { const fruits = ['apple', 'banana', 'orange']; const result = fruits.join(); console.log(result); } // Q2. make an array out of a string { ...
  • 웹지기 02-15 3372 0 0 댓글 0
  • 55 [ javascript ] object 생성, 사용방법
  • 'use strict'; 객체(Objects) //one of the JavaScript's data types. //a collection of related data and/or functionality. //Nearly all objects in JavaScript are instances of Objets. //object = { key : value }; //오브젝트는 키와벨류의 집합체 //변수에 접근가능한 property 와 값의 집합 1. 변수에 넣은 변하지 않는 데...
  • 웹지기 02-14 1226 0 0 댓글 0
  • 54 [ javascript ] 클래스 정의 및 사용
  • 객체지향 프로그래밍(Object-oriendted programming) class: template object: instance of a class JavaScript classes - introduced in ES6 - syntactical sugar over prototype-based inheritance js파일 상단에 선언(오류체크) 'use strict'; 1. 클래스선언(Class declarations) class Person {...
  • 웹지기 02-11 1476 0 0 댓글 0
  • 53 [ javascript ] 함수의 또다른 기능
  • 함수의 또다른 기능 함수는 다른 변수처럼 사용된다. 변수에 값으로 할당 할 수 있다. 다른 함수에 인수로 전달 가능 다른 함수에 의해 반환될 수 있다. First-class function functions are treated like any other variable can be assigned as a value to variable can be passed as an argument to other functions. can be returned by another func...
  • 웹지기 02-11 1209 0 0 댓글 0
  • 52 [ javascript ] 함수 선언 , 사용법
  • 함수(Function) 프로그램을 구성하는 빌딩블럭 서브프로그램이라고도 불리며 여러번 재사용이 가능 한가지의 작업이나 값을 계산할 때 사용 -fundamental building block in the program -subprogram can be used multiple times -performs a task or calculates a value 1. 함수 정의(Function declaration) function 함수명(파라미터1, 파라미터2) {비지니스로직.......
  • 웹지기 02-11 1169 0 0 댓글 0
  • 50 [ javascript ] 자바스크립트 변수 선언( var, let, const 차이)
  • ※ 자바스크립트 변수 선언 - 변수(Variables)는 변하는 데이터(값)를 저장할 수 있는 메모리 공간. - 변수에 데이터 값은 한개만 저장되므로, 같은 변수를 두번 사용하게 되면 나중에 입력된 변수값으로 저장된다. - 변수의 첫글자에 사용할 수 있는 문자들은 $, _ (언더바), 영문자 만 사용가능 - 변수 선언시 'use strict'; 선언을 통해 오류를 보여주고 방지하자. 변수선언( var = function-scoped ) var 변수명; var 변수...
  • 웹지기 02-09 1987 0 0 댓글 0
  • 49 [ javascript ] 자바스크립트 코드 작성시 주의 사항
  • javascript 는 대문자와 소문자를 구분한다. 코드가 끝났으면 ; 을 통해서 라인이 끝났다고 표시를 해준다. 가독성을 위해 코드는 한줄씩 사용하는게 좋다. 문자형 데이터를 작성할 때는 " 와 ' 를 사용해서 한다. 중복될 때는 \를 사용해서 사용한다. 문자 사잉에 "와 " 겹치지 않게 사용해줘야 한다. document.write("동해물과 " 백수산이 " 마르고 닳도록 "); //오류구문 docume...
  • 웹지기 02-09 1223 0 0 댓글 0
게시물 검색

회원로그인

접속자집계

오늘
5,893
어제
15,369
최대
33,828
전체
8,342,683

그누보드5
Copyright © funyphp.com. All rights reserved.