>웹 프론트엔드 >JS 튜토리얼 >중첩된 Node.js 약속을 어떻게 체인 시퀀스로 변환할 수 있나요?

중첩된 Node.js 약속을 어떻게 체인 시퀀스로 변환할 수 있나요?

Patricia Arquette
Patricia Arquette원래의
2024-12-14 11:57:11550검색

How Can Nested Node.js Promises Be Transformed into a Chained Sequence?

중첩된 Promise 풀기

NodeJS Promise는 비동기 작업을 처리하기 위한 강력한 메커니즘을 제공합니다. 그러나 중첩된 Promise는 코드를 복잡하게 만들 수 있습니다. 이 질문은 중첩된 Promise를 보다 관리하기 쉬운 체인 시퀀스로 변환하는 방법을 탐구합니다.

원래 코드 구조

원래 코드는 중첩 접근 방식을 따릅니다. 각 Promise는 후속 Promise 호출을 트리거합니다.

boxContentRequest('files/' + fileId + '/content', req.user.box.accessToken)
    .then(function(response) {
        boxViewerRequest('documents', {url: response.request.href}, 'POST')
            .then(function(response) {
                boxViewerRequest('sessions', {document_id: response.body.id}, 'POST')
                    .then(function(response) {
                        console.log(response);
                    });
            });
    });

체인 Promise

Promise를 연결하려면 각 Promise의 콜백에서 새 Promise를 반환해야 합니다. 이 접근 방식을 사용하면 연결된 Promise가 순차적으로 해결될 수 있습니다.

boxContentRequest('files/' + fileId + '/content', req.user.box.accessToken)
    .then(function(response) {
        return boxViewerRequest('documents', {url: response.request.href}, 'POST');
    })
    .then(function(response) {
        return boxViewerRequest('sessions', {document_id: response.body.id}, 'POST');
    })
    .then(function(response) {
        console.log(response);
    });

수정된 코드 구조는 각 단계에서 결과를 시퀀스의 다음 Promise에 전달하면서 Promise 체인이 원활하게 계속되도록 보장합니다.

일반 패턴

이 연결 패턴은 다음과 같이 일반화될 수 있습니다. 다음:

somePromise.then(function(r1) {
    return nextPromise.then(function(r2) {
        return anyValue;
    });
}) // resolves with anyValue

     ||
    \||/
     \/

somePromise.then(function(r1) {
    return nextPromise;
}).then(function(r2) {
    return anyValue;
}) // resolves with anyValue as well

위 내용은 중첩된 Node.js 약속을 어떻게 체인 시퀀스로 변환할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.