简介
在使用相互构建的异步操作时,可能会出现嵌套 Promise。在提供的代码中,viewFile 函数使用 boxContentRequest 和 boxViewerRequest 发出多个网络请求。这些请求目前是在嵌套的 Promise 中构建的,使得代码难以遵循。
Chaining Promises
为了消除嵌套的 Promise,我们可以使用 Promise 链。这种技术允许我们以顺序方式连接多个异步操作,其中一个 Promise 的输出成为下一个 Promise 的输入。
重构代码
重构代码下面达到了想要的效果链接:
exports.viewFile = function (req, res) { var fileId = req.params.id; boxContentRequest('files/' + fileId + '/content', req.user.box.accessToken) .then(function (response) { // Return the next promise directly return boxViewerRequest('documents', { url: response.request.href }, 'POST'); }) .then(function (response) { // Return the final promise directly return boxViewerRequest('sessions', { document_id: response.body.id }, 'POST'); }) .then(function (response) { console.log(response); }); };
说明
在重构的代码中,我们直接从每个 then 回调返回下一个 Promise。这使我们能够无缝链接承诺,确保执行流程遵循所需的顺序。
通用承诺链模式
承诺链的通用模式如下:
// Option 1: Single-line syntax somePromise .then((r1) => nextPromise) .then((r2) => anyValue); // Option 2: Multi-line syntax somePromise .then(function (r1) { return nextPromise; }) .then(function (r2) { return anyValue; });
两个选项都将以anyValue 的值解析最终的promise。该模式提供了一种简洁优雅的方式来连接异步操作,简化了代码结构并提高了可读性。
以上是Promise 链接如何简化异步操作中的嵌套 Promise?的详细内容。更多信息请关注PHP中文网其他相关文章!