你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
AbortSignalLike interface
允许在触发“中止”事件时中止请求。 与浏览器内置 AbortSignal 和常见 polyfill 兼容。
属性
aborted | 指示信号是否已中止。 |
方法
add |
添加新的“abort”事件侦听器,仅支持“abort”事件。 |
remove |
删除“中止”事件侦听器,仅支持“中止”事件。 |
属性详细信息
aborted
指示信号是否已中止。
aborted: boolean
属性值
boolean
方法详细信息
addEventListener("abort", (this: AbortSignalLike, ev: any) => any, any)
添加新的“abort”事件侦听器,仅支持“abort”事件。
function addEventListener(type: "abort", listener: (this: AbortSignalLike, ev: any) => any, options?: any)
参数
- type
-
"abort"
- listener
-
(this: AbortSignalLike, ev: any) => any
- options
-
any
removeEventListener("abort", (this: AbortSignalLike, ev: any) => any, any)
删除“中止”事件侦听器,仅支持“中止”事件。
function removeEventListener(type: "abort", listener: (this: AbortSignalLike, ev: any) => any, options?: any)
参数
- type
-
"abort"
- listener
-
(this: AbortSignalLike, ev: any) => any
- options
-
any