“Obiecaj AllSettled TypeScript” Kod odpowiedzi

Obiecaj AllSettled TypeScript

const myPromise = async (): Promise<string> => {
  return new Promise((resolve) => {
    resolve("hello world");
  });
};

const data = await Promise.allSettled([myPromise()]);

const response = (data.find(
  (res) => res.status === "fulfilled"
) as PromiseFulfilledResult<string> | undefined)?.value;

if (!response) {
  const error = (data.find(
    (res) => res.status === "rejected"
  ) as PromiseRejectedResult | undefined)?.reason;
  throw new Error(error);
}
Prickly Porcupine

TypeScript Obiecing Allsettled

/* To get this running on Linux, I needed the latest typescript version: */

npm install -g typescript@latest

/* Then in your tsconfig you currently need the ES2020.Promise lib. */

{
  "compilerOptions": {
    "lib": [
      "ES2020.Promise",
    ]
  },
}

/* Usage: */ const results = await Promise.allSettled(BatchOfPromises);
Cute Caterpillar

Odpowiedzi podobne do “Obiecaj AllSettled TypeScript”

Pytania podobne do “Obiecaj AllSettled TypeScript”

Więcej pokrewnych odpowiedzi na “Obiecaj AllSettled TypeScript” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu