JavaScript로 약속 취소 익히기

WBOY
풀어 주다: 2024-09-12 10:32:30
원래의
766명이 탐색했습니다.

작가: 로사리오 데 키아라✏️

자바스크립트에서 Promise는 비동기 작업을 처리하기 위한 강력한 도구로, 특히 UI 관련 이벤트에 유용합니다. 이는 즉시 사용할 수 없지만 향후 어느 시점에 해결될 값을 나타냅니다.

Promise를 사용하면 개발자가 API 호출, 사용자 상호 작용 또는 애니메이션과 같은 작업을 처리할 때 더 깔끔하고 관리하기 쉬운 코드를 작성할 수 있습니다(또는 허용해야 합니다). .then(), .catch() 및 .finally()와 같은 메서드를 사용하면 Promises를 통해 악명 높은 "콜백 지옥"을 피하면서 성공 및 오류 시나리오를 보다 직관적으로 처리할 수 있습니다.

이 글에서는 새로운 Promise와 Promise를 해결하는 두 개의 함수, 세 가지를 포함하는 객체를 반환하여 더 깔끔하고 간단한 코드를 작성할 수 있는 새로운(2024년 3월 Promise.withResolvers() 메서드를 사용합니다. 이는 최근 업데이트이므로 이 기사의 예제를 실행하려면 최신 Node 런타임(v>22)이 필요합니다.

기존 JavaScript Promise 메서드와 새로운 JavaScript Promise 메서드 비교

기능적으로 동일한 다음 두 코드 덩어리에서 Promise를 해결하거나 거부하는 메서드를 할당하는 기존 접근 방식과 새로운 접근 방식을 비교할 수 있습니다.

let resolve, reject;

const promise = new Promise((res, rej) => {
  resolve = res;
  reject = rej;
});

Math.random() > 0.5 ? resolve("ok") : reject("not ok");
로그인 후 복사

위 코드에서 Promise의 가장 전통적인 사용법을 볼 수 있습니다. 새 Promise 객체를 인스턴스화한 다음 생성자에서 두 가지 함수인 해결 및 거부를 할당해야 합니다. 필요합니다.

다음 코드 조각에서는 동일한 코드 덩어리가 새로운 Promise.withResolvers() 메서드를 사용하여 다시 작성되었으며 더 단순해 보입니다.

const { promise, resolve, reject } = Promise.withResolvers();

Math.random() > 0.5 ? resolve("ok") : reject("not ok");
로그인 후 복사

여기서 새로운 접근 방식이 어떻게 작동하는지 확인할 수 있습니다. .then() 메서드와 두 함수인 해결 및 거부를 호출할 수 있는 Promise를 반환합니다.

Promise에 대한 기존 접근 방식은 단일 함수 내에서 생성 및 이벤트 처리 논리를 캡슐화합니다. 이는 여러 조건이나 코드의 다른 부분이 Promise를 해결하거나 거부해야 하는 경우 제한될 수 있습니다.

반대로 Promise.withResolvers()는 Promise 생성을 해결 논리에서 분리하여 더 큰 유연성을 제공하므로 복잡한 조건이나 여러 이벤트를 관리하는 데 적합합니다. 그러나 간단한 사용 사례의 경우 표준 약속 패턴에 익숙한 사용자에게는 기존 방법이 더 간단하고 친숙할 수 있습니다.

실제 예: API 호출

이제 보다 현실적인 예를 통해 새로운 접근 방식을 테스트할 수 있습니다. 아래 코드에서 API 호출의 간단한 예를 볼 수 있습니다.

function fetchData(url) {
    return new Promise((resolve, reject) => {
        fetch(url)
            .then(response => {
                // Check if the response is okay (status 200-299)
                if (response.ok) {
                    return response.json(); // Parse JSON if response is okay
                } else {
                    // Reject the promise if the response is not okay
                    reject(new Error('API Invocation failed'));
                }
            })
            .then(data => {
                // Resolve the promise with the data
                resolve(data);
            })
            .catch(error => {
                // Catch and reject the promise if there is a network error
                reject(error);
            });
    });
}

// Example usage
const apiURL = '<ADD HERE YOU API ENDPOINT>';

fetchData(apiURL)
    .then(data => {
        // Handle the resolved data
        console.log('Data received:', data);
    })
    .catch(error => {
        // Handle any errors that occurred
        console.error('Error occurred:', error);
    });
로그인 후 복사

fetchData 함수는 URL을 가져와서 fetch API를 사용하여 API 호출을 처리하는 Promise를 반환하도록 설계되었습니다. 응답 상태가 성공을 나타내는 200-299 범위 내에 있는지 확인하여 응답을 처리합니다.

성공하면 응답이 JSON으로 구문 분석되고 결과 데이터로 Promise가 해결됩니다. 응답이 성공하지 못하면 적절한 오류 메시지와 함께 Promise가 거부됩니다. 또한 이 함수에는 네트워크 오류를 포착하는 오류 처리가 포함되어 있으며, 그러한 오류가 발생하면 Promise를 거부합니다.

이 예에서는 이 함수를 사용하는 방법을 보여 주며, .then() 블록으로 해결된 데이터를 관리하고 .catch() 블록을 사용하여 오류를 처리하는 방법을 보여줌으로써 성공적인 데이터 검색과 오류가 모두 적절하게 관리되도록 보장합니다.

아래 코드에서는 새로운 Promise.withResolvers() 메서드를 사용하여 fetchData() 함수를 다시 작성했습니다.

function fetchData(url) {
    const { promise, resolve, reject } = Promise.withResolvers();

    fetch(url)
        .then(response => {
            // Check if the response is okay (status 200-299)
            if (response.ok) {
                return response.json(); // Parse JSON if response is okay
            } else {
                // Reject the promise if the response is not okay
                reject(new Error('API Invocation failed'));
            }
        })
        .then(data => {
            // Resolve the promise with the data
            resolve(data);
        })
        .catch(error => {
            // Catch and reject the promise if there is a network error
            reject(error);
        });

    return promise;
}
로그인 후 복사

보시다시피 위의 코드는 더 읽기 쉽고 Promise 객체의 역할은 명확합니다. fetchData 함수는 성공적으로 해결되거나 실패할 Promise를 반환하고 각 경우에 적절한 메소드를 호출합니다. . api.invocation.{old|new}.js라는 저장소에서 위의 코드를 찾을 수 있습니다.

약속 취소

다음 코드는 Promise 취소 메소드를 구현하는 방법을 탐색합니다. 아시다시피 JavaScript에서는 Promise를 취소할 수 없습니다. Promise는 비동기 작업의 결과를 나타내며, 생성된 후에는 취소할 수 있는 기본 제공 메커니즘 없이 해결 또는 거부하도록 설계되었습니다.

이 제한은 Promise에 정의된 상태 전환 프로세스가 있기 때문에 발생합니다. 보류 중으로 시작하고 일단 해결되면 상태를 변경할 수 없습니다. 작업 자체를 제어하기보다는 작업 결과를 캡슐화하기 위한 것입니다. 즉, 기본 프로세스에 영향을 주거나 취소할 수 없습니다. 이 디자인 선택은 약속을 단순하게 유지하고 작업의 최종 결과를 나타내는 데 중점을 둡니다.

const cancellablePromise = () => {
    const { promise, resolve, reject } = Promise.withResolvers();

    promise.cancel = () => {
        reject("the promise got cancelled");
    };
    return promise;
};
로그인 후 복사

In the code above, you can see the object named cancellablePromise, which is a promise with an additional cancel() method that, as you can see, simply forces the invocation of the reject method. This is just syntactic sugar and does not cancel a JavaScript Promise, though it may help in writing clearer code.

An alternative approach is to use an AbortController and AbortSignal, which can be tied to the underlying operation (e.g., an HTTP request) to cancel it when needed. From the documentation, you can see that the AbortController and AbortSignal approach is a more expressive implementation of what we implemented in the code above: once the AbortSignal is invoked, the promise just gets rejected.

Another approach is to use reactive programming libraries like RxJS, which offers an implementation of the Observable pattern, a more sophisticated control over async data streams, including cancellation capabilities.

A comparison between Observables and Promises

When speaking about practical use cases, Promises are well-suited for handling single asynchronous operations, such as fetching data from an API. In contrast, Observables are ideal for managing streams of data, such as user input, WebSocket events, or HTTP responses, where multiple values may be emitted over time.

We already clarified that once initiated, Promises cannot be canceled, whereas Observables allow for cancellation by unsubscribing from the stream. The general idea is that, with Observables, you have an explicit structure of the possible interaction with the object:

  • You create an Observable, and then all the Observables can subscribe to it
  • The Observable carries out its work, changing state and emitting events. All the Observers will receive the updates – this is the main difference with Promises. A Promise can be resolved just once while the Observables can keep emitting events as long as there are Observers
  • Once the Observer is not interested in the events from the Observables, it can unsubscribe, freeing resources

This is demonstrated in the code below:

import { Observable } from 'rxjs';

const observable = new Observable(subscriber => {
  subscriber.next(1);
  subscriber.next(2);
  subscriber.next(3);
  subscriber.complete();
});

const observer = observable.subscribe({
  next(x) { console.log('Received value:', x); },
  complete() { console.log('Observable completed'); }
});

observer.unsubscribe();
로그인 후 복사

This code cannot be rewritten with Promises because the Observable returns three values while a Promise can only be resolved once.

To experiment further with the unsubscribe method, we can add another Observer that will use the takeWhile() method: it will let the Observer wait for values to match a specific condition; in the code below, for example, it keeps receiving events from the Observable while the value is not 2:

import { Observable, takeWhile } from 'rxjs';

const observable = new Observable(subscriber => {
  subscriber.next(1);
  subscriber.next(2);
  subscriber.next(3);
  subscriber.complete();
});

const observer1 = observable.subscribe({
  next(x) { console.log('Received by 1 value:', x); },
  complete() { console.log('Observable 1 completed'); }
});

const observer2 = observable.pipe(
  takeWhile(value => value != "2")
).subscribe(value => console.log('Received by 2 value:', value));
로그인 후 복사

In the code above, observer1 is the same as we have already seen: it will just subscribe and keep receiving all the events from the Observable. The second one, observer2, will receive elements from the Observable while the condition is matched. In this case, this means when the value is different from 2.

From the execution, you can see how the two different mechanisms work:

$ node observable.mjs
Received by 1 value: 1
Received by 1 value: 2
Received by 1 value: 3
Observable 1 completed
Received by 2 value: 1
$
로그인 후 복사

Conclusion

In this article, we investigated the new mechanism to allocate a Promise in JavaScript and laid out some of the possible ways to cancel a Promise before its completion. We also compared Promises with Observable objects, which not only offer the features of Promises but extend them by allowing multiple emissions of events and a proper mechanism for unsubscribing.


LogRocket: Debug JavaScript errors more easily by understanding the context

Debugging code is always a tedious task. But the more you understand your errors, the easier it is to fix them.

LogRocket allows you to understand these errors in new and unique ways. Our frontend monitoring solution tracks user engagement with your JavaScript frontends to give you the ability to see exactly what the user did that led to an error.

Mastering promise cancellation in JavaScript

LogRocket records console logs, page load times, stack traces, slow network requests/responses with headers + bodies, browser metadata, and custom logs. Understanding the impact of your JavaScript code will never be easier!

Try it for free.

위 내용은 JavaScript로 약속 취소 익히기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!