Sdílet prostřednictvím


AbortSignalLike interface

Umožňuje přerušit požadavek při aktivaci události "přerušení". Kompatibilní s integrovaným prohlížečem AbortSignal a běžnými polyfills.

Vlastnosti

aborted

Označuje, jestli již byl signál přerušen.

Metody

addEventListener("abort", (this: AbortSignalLike, ev: any) => any, any)

Přidejte nový naslouchací proces událostí "přerušit", podporují pouze událost "abort".

removeEventListener("abort", (this: AbortSignalLike, ev: any) => any, any)

Odeberte naslouchací proces událostí "přerušit", podporují pouze událost "abort".

Podrobnosti vlastnosti

aborted

Označuje, jestli již byl signál přerušen.

aborted: boolean

Hodnota vlastnosti

boolean

Podrobnosti metody

addEventListener("abort", (this: AbortSignalLike, ev: any) => any, any)

Přidejte nový naslouchací proces událostí "přerušit", podporují pouze událost "abort".

function addEventListener(type: "abort", listener: (this: AbortSignalLike, ev: any) => any, options?: any)

Parametry

type

"abort"

listener

(this: AbortSignalLike, ev: any) => any

options

any

removeEventListener("abort", (this: AbortSignalLike, ev: any) => any, any)

Odeberte naslouchací proces událostí "přerušit", podporují pouze událost "abort".

function removeEventListener(type: "abort", listener: (this: AbortSignalLike, ev: any) => any, options?: any)

Parametry

type

"abort"

listener

(this: AbortSignalLike, ev: any) => any

options

any