http://www.devua.co/2016/05/20/how-to-run-blog-on-openshift-complete-guide/显示retryable
的{{1}}示例,但我想知道async.auto
的模式是什么样的?我一直无法追查任何例子。它看起来像这样:
async.waterfall
答案 0 :(得分:0)
在进行进一步研究时,我已在下面的async.retryable
(步骤3)的背景下确认这是async.waterfall
的正确模式:
async.waterfall([
step1,
step2,
async.retryable([opts = {times: 5, interval: 3000}], step3),
step4
],
function(error, result) {
if (error) { console.error(error); return;
} console.log(result);
});