你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
DefaultHttpClient class
使用 node-fetch
的 HTTP 客户端。
方法
fetch(string, Common |
使用 |
prepare |
根据提供的 Web 资源准备请求。 |
process |
处理 HTTP 响应。 |
send |
提供最小可行错误处理和执行抽象方法的逻辑。 |
方法详细信息
fetch(string, CommonRequestInit)
使用 node-fetch
执行请求。
function fetch(input: string, init?: CommonRequestInit): Promise<CommonResponse>
参数
- input
-
string
- init
- CommonRequestInit
返回
Promise<CommonResponse>
prepareRequest(WebResourceLike)
根据提供的 Web 资源准备请求。
function prepareRequest(httpRequest: WebResourceLike): Promise<Partial<RequestInit>>
参数
- httpRequest
- WebResourceLike
返回
Promise<Partial<RequestInit>>
processRequest(HttpOperationResponse)
处理 HTTP 响应。
function processRequest(_operationResponse: HttpOperationResponse): Promise<void>
参数
- _operationResponse
- HttpOperationResponse
返回
Promise<void>
sendRequest(WebResourceLike)
提供最小可行错误处理和执行抽象方法的逻辑。
function sendRequest(httpRequest: WebResourceLike): Promise<HttpOperationResponse>
参数
- httpRequest
- WebResourceLike
表示传出 HTTP 请求的对象。
返回
Promise<HttpOperationResponse>
表示传入 HTTP 响应的 对象。