AbortSignalLike interface
Consente l'interruzione della richiesta al momento dell'attivazione dell'evento "abort". Compatibile con il browser predefinito AbortSignal e polifill comuni.
Proprietà
aborted | Indica se il segnale è già stato interrotto. |
Metodi
add |
Aggiungere un nuovo listener eventi "abort", supporta solo l'evento "abort". |
remove |
Rimuovere il listener eventi "abort", supporta solo l'evento "abort". |
Dettagli proprietà
aborted
Indica se il segnale è già stato interrotto.
aborted: boolean
Valore della proprietà
boolean
Dettagli metodo
addEventListener("abort", (this: AbortSignalLike, ev: any) => any, any)
Aggiungere un nuovo listener eventi "abort", supporta solo l'evento "abort".
function addEventListener(type: "abort", listener: (this: AbortSignalLike, ev: any) => any, options?: any)
Parametri
- type
-
"abort"
- listener
-
(this: AbortSignalLike, ev: any) => any
- options
-
any
removeEventListener("abort", (this: AbortSignalLike, ev: any) => any, any)
Rimuovere il listener eventi "abort", supporta solo l'evento "abort".
function removeEventListener(type: "abort", listener: (this: AbortSignalLike, ev: any) => any, options?: any)
Parametri
- type
-
"abort"
- listener
-
(this: AbortSignalLike, ev: any) => any
- options
-
any