중첩된 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!