0
return new bluebird((resolve) => {
bluebird.resolve()
.tap(saveExcelFiles)
.tap(...)
.tap(() => {
return getZip().then((rows) => {
resolve(rows) // this outer bluebird helps me
return rows;
});
})
;
});
如何返回一個藍鳥包裝的所有數據(每個水龍頭)或者就在上個星期自來水。
P.S.我需要測序(一個接一個,自來水用自來水)
@alexmac,你可以改進一些例子嗎? – aaaaaaaaax10
避免['Promise' constructor antipattern](https://stackoverflow.com/q/23803743/1048572?What-is-the-promise-construction-antipattern-and-how-to-avoid-it)! – Bergi