第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

承諾重試設(shè)計模式

承諾重試設(shè)計模式

慕森卡 2019-09-02 08:17:29
繼續(xù)重試的模式,直到promise解析(使用delay和maxRetries)。繼續(xù)重試的模式,直到條件滿足結(jié)果(使用delay和maxRetries)。具有無限重試的內(nèi)存高效動態(tài)模式(提供延遲)。代碼為#1。繼續(xù)重試,直到諾言解決(語言的任何改進社區(qū)等?)Promise.retry = function(fn, times, delay) {    return new Promise(function(resolve, reject){        var error;        var attempt = function() {            if (times == 0) {                reject(error);            } else {                fn().then(resolve)                    .catch(function(e){                        times--;                        error = e;                        setTimeout(function(){attempt()}, delay);                    });            }        };        attempt();    });};使用work.getStatus()    .then(function(result){ //retry, some glitch in the system        return Promise.retry(work.unpublish.bind(work, result), 10, 2000);    })    .then(function(){console.log('done')})    .catch(console.error);#2的代碼繼續(xù)重試,直到條件then以可重用的方式滿足結(jié)果(條件是變化的)。work.publish()    .then(function(result){        return new Promise(function(resolve, reject){            var intervalId = setInterval(function(){                work.requestStatus(result).then(function(result2){                    switch(result2.status) {                        case "progress": break; //do nothing                        case "success": clearInterval(intervalId); resolve(result2); break;                        case "failure": clearInterval(intervalId); reject(result2); break;                    }                }).catch(function(error){clearInterval(intervalId); reject(error)});            }, 1000);        });    })    .then(function(){console.log('done')})    .catch(console.error);
查看完整描述

3 回答

  • 3 回答
  • 0 關(guān)注
  • 627 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號