Promiseからasync-awaitへの変換

Promise

 function restaurantCustomer() {
     return getCustomer()
     .then(customer => {
         return getOrder(customer);
     }).then(order => {
         return prepareFood(order);
     }).then(meal => {
         return serveFood(meal);
     }).then(food => {
         return eatFood(food, customer);
     }).catch(showError);  

async/await

 async function restaurantCustomer() {
     try{
         let customer = await getCustomer();
         let order = await getOrder(customer);
         let meal = await prepareFood(order);
         let food = await serveFood(meal);
         return await eatFood(food);
     } catch(e) {
         showError(e);
     }
 }

参考

https://afteracademy.com/blog/migrating-from-promise-chains-to-async-await


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2021-03-01 (月) 18:13:37