Bluebird 的 Promise 常见问题解答建议使用 .then(success, failure) 是一种反模式。这是因为 .then() 调用返回一个承诺,如果回调抛出错误,该承诺将被拒绝。因此,当 success logger 回调失败时,错误将传递给以下 .catch() 回调,但不会传递给与 success 回调一起提供的失败回调。
控制流图:
[带有两个参数的 then 的控制流程图图像 then catch链]
同步等效:
// some_promise_call().then(logger.log, logger.log) then: { try { var results = some_call(); } catch(e) { logger.log(e); break then; } // else logger.log(results); } // some_promise_call().then(logger.log).catch(logger.log) try { var results = some_call(); logger.log(results); } catch(e) { logger.log(e); }
模式原理:
通常,错误会在每一步中被捕获处理和错误处理是集中的,因此所有错误都由单个最终处理程序处理。然而,反模式中提到的模式在以下情况下很有用:
此模式可以在控件中引入分支 flow.
推荐模式:
不要重复回调,请考虑使用 .catch() 和 .done():
some_promise_call() .catch(function(e) { return e; // it's OK, we'll just log it }) .done(function(res) { logger.log(res); });
您也可以考虑使用 .finally().
以上是什么时候使用'.then(success, failed)”作为 Promise 的反模式?的详细内容。更多信息请关注PHP中文网其他相关文章!