Appearance
外部请求
方法
fetch()
请求指定网站,获取响应数据
输入参数
参数 | 必填 | 默认值 | 类型 | 说明 |
---|---|---|---|---|
url | 是 | URL | 网址 | |
options | Partial‹GameHttpFetchRequestOptions› | 请求配置 |
返回值
类型 | 说明 |
---|---|
Promise‹GameHttpFetchResponse› | 异步返回响应数据 |
定义于 #L13260
接口
GameHttpFetchRequestOptions
请求时的配置。
参数 | 类型 | 说明 |
---|---|---|
timeout | number | 超时时间(毫秒ms),超过后断开请求 |
method | 'OPTIONS' | 'GET' | 'HEAD' | 'PUT' | 'POST' | 'DELETE' | 'PATCH' | 请求方式 |
headers | GameHttpFetchHeaders | 请求头对象 |
body | string | ArrayBuffer | 请求体 |
定义于 #L13237
GameHttpFetchHeaders
请求头配置。
参数 | 类型 | 说明 |
---|---|---|
[name: string] | string | string[] | 请求头列表 |
定义于 #L13234