js-apis-http.md 44.8 KB
Newer Older
1
# @ohos.net.http (数据请求)
C
clevercong 已提交
2

3
本模块提供HTTP数据请求能力。应用可以通过HTTP发起一个数据请求,支持常见的GET、POST、OPTIONS、HEAD、PUT、DELETE、TRACE、CONNECT方法。
4

L
liyufan 已提交
5
>**说明:**
C
clevercong 已提交
6 7 8 9
>
>本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>

C
clevercong 已提交
10
## 导入模块
C
clevercong 已提交
11

Z
zengyawen 已提交
12
```js
C
clevercong 已提交
13 14 15
import http from '@ohos.net.http';
```

C
clevercong 已提交
16
## 完整示例
C
clevercong 已提交
17

Z
zengyawen 已提交
18
```js
Y
Yangys 已提交
19
// 引入包名
C
clevercong 已提交
20 21
import http from '@ohos.net.http';

22
// 每一个httpRequest对应一个HTTP请求任务,不可复用
C
clevercong 已提交
23
let httpRequest = http.createHttp();
24
// 用于订阅HTTP响应头,此接口会比request请求先返回。可以根据业务需要订阅此消息
C
clevercong 已提交
25
// 从API 8开始,使用on('headersReceive', Callback)替代on('headerReceive', AsyncCallback)。 8+
C
clevercong 已提交
26 27
httpRequest.on('headersReceive', (header) => {
    console.info('header: ' + JSON.stringify(header));
C
clevercong 已提交
28 29
});
httpRequest.request(
30
    // 填写HTTP请求的URL地址,可以带参数也可以不带参数。URL地址需要开发者自定义。请求的参数可以在extraData中指定
C
clevercong 已提交
31 32
    "EXAMPLE_URL",
    {
C
clevercong 已提交
33
        method: http.RequestMethod.POST, // 可选,默认为http.RequestMethod.GET
C
clevercong 已提交
34 35 36 37 38 39 40 41
        // 开发者根据自身业务需要添加header字段
        header: {
            'Content-Type': 'application/json'
        },
        // 当使用POST请求时此字段用于传递内容
        extraData: {
            "data": "data to send",
        },
L
liyufan 已提交
42 43 44
        expectDataType: http.HttpDataType.STRING, // 可选,指定返回数据的类型
        usingCache: true, // 可选,默认为true
        priority: 1, // 可选,默认为1
45 46
        connectTimeout: 60000, // 可选,默认为60000ms
        readTimeout: 60000, // 可选,默认为60000ms
L
liyufan 已提交
47
        usingProtocol: http.HttpProtocol.HTTP1_1, // 可选,协议类型默认值由系统自动指定
Y
Yangys 已提交
48
        usingProxy: false, //可选,默认不使用网络代理,自API 10开始支持该属性
C
clevercong 已提交
49
    }, (err, data) => {
C
clevercong 已提交
50
        if (!err) {
51
            // data.result为HTTP响应内容,可根据业务需要进行解析
Y
Yangys 已提交
52 53
            console.info('Result:' + JSON.stringify(data.result));
            console.info('code:' + JSON.stringify(data.responseCode));
54
            // data.header为HTTP响应头,可根据业务需要进行解析
C
clevercong 已提交
55
            console.info('header:' + JSON.stringify(data.header));
Y
Yangys 已提交
56
            console.info('cookies:' + JSON.stringify(data.cookies)); // 8+
C
clevercong 已提交
57
        } else {
C
clevercong 已提交
58
            console.info('error:' + JSON.stringify(err));
Y
Yangys 已提交
59 60
            // 取消订阅HTTP响应头事件
            httpRequest.off('headersReceive');
C
clevercong 已提交
61 62 63 64 65 66 67
            // 当该请求使用完毕时,调用destroy方法主动销毁。
            httpRequest.destroy();
        }
    }
);
```

C
clevercong 已提交
68
## http.createHttp
C
clevercong 已提交
69

Y
Yangys 已提交
70
createHttp(): HttpRequest
C
clevercong 已提交
71

72
创建一个HTTP请求,里面包括发起请求、中断请求、订阅/取消订阅HTTP Response Header事件。每一个HttpRequest对象对应一个HTTP请求。如需发起多个HTTP请求,须为每个HTTP请求创建对应HttpRequest对象。
C
clevercong 已提交
73

C
clevercong 已提交
74
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
75

C
clevercong 已提交
76
**返回值:**
C
clevercong 已提交
77

C
clevercong 已提交
78 79
| 类型        | 说明                                                         |
| :---------- | :----------------------------------------------------------- |
Y
Yangys 已提交
80
| HttpRequest | 返回一个HttpRequest对象,里面包括request、request2、destroy、on和off方法。 |
C
clevercong 已提交
81

C
clevercong 已提交
82 83
**示例:**

Z
zengyawen 已提交
84
```js
C
clevercong 已提交
85 86 87
import http from '@ohos.net.http';
let httpRequest = http.createHttp();
```
C
clevercong 已提交
88

C
clevercong 已提交
89
## HttpRequest
C
clevercong 已提交
90

Y
Yangys 已提交
91
HTTP请求任务。在调用HttpRequest的方法前,需要先通过[createHttp()](#httpcreatehttp)创建一个任务。
C
clevercong 已提交
92

C
clevercong 已提交
93
### request
C
clevercong 已提交
94

Y
Yangys 已提交
95
request(url: string, callback: AsyncCallback\<HttpResponse\>):void
C
clevercong 已提交
96 97 98

根据URL地址,发起HTTP网络请求,使用callback方式作为异步方法。

Y
Yangys 已提交
99 100 101
>**说明:**
>此接口仅支持数据大小为5M以内的数据传输。

C
clevercong 已提交
102 103
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
104
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
105

C
clevercong 已提交
106
**参数:**
C
clevercong 已提交
107

108 109 110
| 参数名   | 类型                                           | 必填 | 说明                    |
| -------- | ---------------------------------------------- | ---- | ----------------------- |
| url      | string                                         | 是   | 发起网络请求的URL地址。 |
C
clevercong 已提交
111
| callback | AsyncCallback\<[HttpResponse](#httpresponse)\> | 是   | 回调函数。              |
C
clevercong 已提交
112

Y
Yangys 已提交
113
**错误码:**
Y
Yangys 已提交
114 115 116 117

| 错误码ID   | 错误信息                                                  |
|---------|-------------------------------------------------------|
| 401     | Parameter error.                                      |
Y
Yangys 已提交
118
| 201     | Permission denied.                                    |
Y
Yangys 已提交
119 120 121 122 123
| 2300003 | URL using bad/illegal format or missing URL.          |
| 2300007 | Couldn't connect to server.                           |
| 2300028 | Timeout was reached.                                  |
| 2300052 | Server returned nothing (no headers, no data).        |
| 2300999 | Unknown Other Error.                                  |
Y
Yangys 已提交
124

Y
Yangys 已提交
125
>**错误码说明:**
Y
Yangys 已提交
126
> 以上错误码的详细介绍参见[HTTP错误码](../errorcodes/errorcode-net-http.md)。
Y
Yangys 已提交
127
> HTTP 错误码映射关系:2300000 + curl错误码。更多常用错误码,可参考:[curl错误码](https://curl.se/libcurl/c/libcurl-errors.html)
Y
Yangys 已提交
128

C
clevercong 已提交
129
**示例:**
C
clevercong 已提交
130

Z
zengyawen 已提交
131
```js
C
clevercong 已提交
132
httpRequest.request("EXAMPLE_URL", (err, data) => {
C
clevercong 已提交
133 134 135 136 137 138 139 140
    if (!err) {
        console.info('Result:' + data.result);
        console.info('code:' + data.responseCode);
        console.info('header:' + JSON.stringify(data.header));
        console.info('cookies:' + data.cookies); // 8+
    } else {
        console.info('error:' + JSON.stringify(err));
    }
C
clevercong 已提交
141 142
});
```
C
clevercong 已提交
143

C
clevercong 已提交
144
### request
C
clevercong 已提交
145

Y
Yangys 已提交
146
request(url: string, options: HttpRequestOptions, callback: AsyncCallback\<HttpResponse\>):void
C
clevercong 已提交
147 148 149

根据URL地址和相关配置项,发起HTTP网络请求,使用callback方式作为异步方法。

Y
Yangys 已提交
150 151 152
>**说明:**
>此接口仅支持数据大小为5M以内的数据传输。

C
clevercong 已提交
153 154
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
155
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
156

C
clevercong 已提交
157
**参数:**
C
clevercong 已提交
158

C
clevercong 已提交
159 160 161 162 163
| 参数名   | 类型                                           | 必填 | 说明                                            |
| -------- | ---------------------------------------------- | ---- | ----------------------------------------------- |
| url      | string                                         | 是   | 发起网络请求的URL地址。                         |
| options  | HttpRequestOptions                             | 是   | 参考[HttpRequestOptions](#httprequestoptions)。 |
| callback | AsyncCallback\<[HttpResponse](#httpresponse)\> | 是   | 回调函数。                                      |
C
clevercong 已提交
164

Y
Yangys 已提交
165
**错误码:**
Y
Yangys 已提交
166 167 168 169

| 错误码ID   | 错误信息                                                  |
|---------|-------------------------------------------------------|
| 401     | Parameter error.                                      |
Y
Yangys 已提交
170
| 201     | Permission denied.                                    |
Y
Yangys 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
| 2300001 | Unsupported protocol.                                 |
| 2300003 | URL using bad/illegal format or missing URL.          |
| 2300005 | Couldn't resolve proxy name.                          |
| 2300006 | Couldn't resolve host name.                           |
| 2300007 | Couldn't connect to server.                           |
| 2300008 | Weird server reply.                                   |
| 2300009 | Access denied to remote resource.                     |
| 2300016 | Error in the HTTP2 framing layer.                     |
| 2300018 | Transferred a partial file.                           |
| 2300023 | Failed writing received data to disk/application.     |
| 2300025 | Upload failed.                                        |
| 2300026 | Failed to open/read local data from file/application. |
| 2300027 | Out of memory.                                        |
| 2300028 | Timeout was reached.                                  |
| 2300047 | Number of redirects hit maximum amount.               |
| 2300052 | Server returned nothing (no headers, no data).        |
| 2300055 | Failed sending data to the peer.                      |
| 2300056 | Failure when receiving data from the peer.            |
| 2300058 | Problem with the local SSL certificate.               |
| 2300059 | Couldn't use specified SSL cipher.                    |
| 2300060 | SSL peer certificate or SSH remote key was not OK.    |
| 2300061 | Unrecognized or bad HTTP Content or Transfer-Encoding.|
| 2300063 | Maximum file size exceeded.                           |
| 2300070 | Disk full or allocation exceeded.                     |
| 2300073 | Remote file already exists.                           |
| 2300077 | Problem with the SSL CA cert (path? access rights?).  |
| 2300078 | Remote file not found.                                |
| 2300094 | An authentication function returned an error.         |
| 2300999 | Unknown Other Error.                                  |

>**错误码说明:**
Y
Yangys 已提交
202
> 以上错误码的详细介绍参见[HTTP错误码](../errorcodes/errorcode-net-http.md)。
Y
Yangys 已提交
203
> HTTP 错误码映射关系:2300000 + curl错误码。更多常用错误码,可参考:[curl错误码](https://curl.se/libcurl/c/libcurl-errors.html)
Y
Yangys 已提交
204

C
clevercong 已提交
205
**示例:**
C
clevercong 已提交
206

Z
zengyawen 已提交
207
```js
C
clevercong 已提交
208 209
httpRequest.request("EXAMPLE_URL",
{
C
clevercong 已提交
210
    method: http.RequestMethod.GET,
C
clevercong 已提交
211 212 213 214 215 216 217 218 219
    header: {
        'Content-Type': 'application/json'
    },
    readTimeout: 60000,
    connectTimeout: 60000
}, (err, data) => {
    if (!err) {
        console.info('Result:' + data.result);
        console.info('code:' + data.responseCode);
C
clevercong 已提交
220
        console.info('header:' + JSON.stringify(data.header));
C
clevercong 已提交
221 222 223 224
        console.info('cookies:' + data.cookies); // 8+
        console.info('header.Content-Type:' + data.header['Content-Type']);
        console.info('header.Status-Line:' + data.header['Status-Line']);
    } else {
C
clevercong 已提交
225
        console.info('error:' + JSON.stringify(err));
C
clevercong 已提交
226
    }
C
clevercong 已提交
227 228
});
```
C
clevercong 已提交
229

C
clevercong 已提交
230
### request
C
clevercong 已提交
231

Y
Yangys 已提交
232
request(url: string, options? : HttpRequestOptions): Promise\<HttpResponse\>
C
clevercong 已提交
233 234 235

根据URL地址,发起HTTP网络请求,使用Promise方式作为异步方法。

Y
Yangys 已提交
236 237 238
>**说明:**
>此接口仅支持数据大小为5M以内的数据传输。

C
clevercong 已提交
239 240
**需要权限**:ohos.permission.INTERNET

C
clevercong 已提交
241
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
242

C
clevercong 已提交
243 244
**参数:**

245 246 247
| 参数名  | 类型               | 必填 | 说明                                            |
| ------- | ------------------ | ---- | ----------------------------------------------- |
| url     | string             | 是   | 发起网络请求的URL地址。                         |
L
liyufan 已提交
248
| options | HttpRequestOptions | 否   | 参考[HttpRequestOptions](#httprequestoptions)。 |
C
clevercong 已提交
249

C
clevercong 已提交
250 251
**返回值:**

252 253
| 类型                                   | 说明                              |
| :------------------------------------- | :-------------------------------- |
C
clevercong 已提交
254
| Promise<[HttpResponse](#httpresponse)> | 以Promise形式返回发起请求的结果。 |
C
clevercong 已提交
255

Y
Yangys 已提交
256
**错误码:**
Y
Yangys 已提交
257 258 259 260

| 错误码ID   | 错误信息                                                  |
|---------|-------------------------------------------------------|
| 401     | Parameter error.                                      |
Y
Yangys 已提交
261
| 201     | Permission denied.                                    |
Y
Yangys 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
| 2300001 | Unsupported protocol.                                 |
| 2300003 | URL using bad/illegal format or missing URL.          |
| 2300005 | Couldn't resolve proxy name.                          |
| 2300006 | Couldn't resolve host name.                           |
| 2300007 | Couldn't connect to server.                           |
| 2300008 | Weird server reply.                                   |
| 2300009 | Access denied to remote resource.                     |
| 2300016 | Error in the HTTP2 framing layer.                     |
| 2300018 | Transferred a partial file.                           |
| 2300023 | Failed writing received data to disk/application.     |
| 2300025 | Upload failed.                                        |
| 2300026 | Failed to open/read local data from file/application. |
| 2300027 | Out of memory.                                        |
| 2300028 | Timeout was reached.                                  |
| 2300047 | Number of redirects hit maximum amount.               |
| 2300052 | Server returned nothing (no headers, no data).        |
| 2300055 | Failed sending data to the peer.                      |
| 2300056 | Failure when receiving data from the peer.            |
| 2300058 | Problem with the local SSL certificate.               |
| 2300059 | Couldn't use specified SSL cipher.                    |
| 2300060 | SSL peer certificate or SSH remote key was not OK.    |
| 2300061 | Unrecognized or bad HTTP Content or Transfer-Encoding.|
| 2300063 | Maximum file size exceeded.                           |
| 2300070 | Disk full or allocation exceeded.                     |
| 2300073 | Remote file already exists.                           |
| 2300077 | Problem with the SSL CA cert (path? access rights?).  |
| 2300078 | Remote file not found.                                |
| 2300094 | An authentication function returned an error.         |
| 2300999 | Unknown Other Error.                                  |

>**错误码说明:**
Y
Yangys 已提交
293
> 以上错误码的详细介绍参见[HTTP错误码](../errorcodes/errorcode-net-http.md)。
Y
Yangys 已提交
294
> HTTP 错误码映射关系:2300000 + curl错误码。更多常用错误码,可参考:[curl错误码](https://curl.se/libcurl/c/libcurl-errors.html) 
C
clevercong 已提交
295 296 297

**示例:**

Z
zengyawen 已提交
298
```js
C
clevercong 已提交
299
let promise = httpRequest.request("EXAMPLE_URL", {
C
clevercong 已提交
300
    method: http.RequestMethod.GET,
C
clevercong 已提交
301 302 303 304 305
    connectTimeout: 60000,
    readTimeout: 60000,
    header: {
        'Content-Type': 'application/json'
    }
C
clevercong 已提交
306
});
C
clevercong 已提交
307 308 309 310 311 312 313
promise.then((data) => {
    console.info('Result:' + data.result);
    console.info('code:' + data.responseCode);
    console.info('header:' + JSON.stringify(data.header));
    console.info('cookies:' + data.cookies); // 8+
    console.info('header.Content-Type:' + data.header['Content-Type']);
    console.info('header.Status-Line:' + data.header['Status-Line']);
C
clevercong 已提交
314
}).catch((err) => {
C
clevercong 已提交
315
    console.info('error:' + JSON.stringify(err));
C
clevercong 已提交
316 317
});
```
C
clevercong 已提交
318

C
clevercong 已提交
319
### destroy
C
clevercong 已提交
320

Y
Yangys 已提交
321
destroy(): void
C
clevercong 已提交
322 323 324

中断请求任务。

C
clevercong 已提交
325
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
326

C
clevercong 已提交
327
**示例:**
C
clevercong 已提交
328

Z
zengyawen 已提交
329
```js
C
clevercong 已提交
330 331
httpRequest.destroy();
```
C
clevercong 已提交
332

Y
Yangys 已提交
333 334
### request2<sup>10+</sup>

Y
Yangys 已提交
335
request2(url: string, callback: AsyncCallback\<number\>): void
Y
Yangys 已提交
336 337 338 339 340 341 342 343 344 345 346 347

根据URL地址和相关配置项,发起HTTP网络请求并返回流式响应,使用callback方式作为异步方法。

**需要权限**:ohos.permission.INTERNET

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                           | 必填 | 说明                                            |
| -------- | ---------------------------------------------- | ---- | ----------------------------------------------- |
| url      | string                                         | 是   | 发起网络请求的URL地址。                         |
Y
Yangys 已提交
348
| callback | AsyncCallback\<[number](#responsecode)\>       | 是   | 回调函数。                                      |
Y
Yangys 已提交
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368

**错误码:**

| 错误码ID   | 错误信息                                                  |
|---------|-------------------------------------------------------|
| 401     | Parameter error.                                      |
| 201     | Permission denied.                                    |
| 2300003 | URL using bad/illegal format or missing URL.          |
| 2300007 | Couldn't connect to server.                           |
| 2300028 | Timeout was reached.                                  |
| 2300052 | Server returned nothing (no headers, no data).        |
| 2300999 | Unknown Other Error.                                  |

>**错误码说明:**
> 以上错误码的详细介绍参见[HTTP错误码](../errorcodes/errorcode-net-http.md)。
> HTTP 错误码映射关系:2300000 + curl错误码。更多常用错误码,可参考:[curl错误码](https://curl.se/libcurl/c/libcurl-errors.html)

**示例:**

```js
Y
Yangys 已提交
369
httpRequest.request2("EXAMPLE_URL", (err, data) => {
Y
Yangys 已提交
370
    if (!err) {
Y
Yangys 已提交
371
        console.info("request2 OK! ResponseCode is " + JSON.stringify(data));
Y
Yangys 已提交
372 373 374 375 376 377 378 379
    } else {
        console.info("request2 ERROR : err = " + JSON.stringify(err));
    }
})
```

### request2<sup>10+</sup>

Y
Yangys 已提交
380
request2(url: string, options: HttpRequestOptions, callback: AsyncCallback\<number\>): void
Y
Yangys 已提交
381 382 383 384 385 386 387 388 389 390 391 392 393

根据URL地址和相关配置项,发起HTTP网络请求并返回流式响应,使用callback方式作为异步方法。

**需要权限**:ohos.permission.INTERNET

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                           | 必填 | 说明                                            |
| -------- | ---------------------------------------------- | ---- | ----------------------------------------------- |
| url      | string                                         | 是   | 发起网络请求的URL地址。                         |
| options  | HttpRequestOptions                             | 是   | 参考[HttpRequestOptions](#httprequestoptions)。 |
Y
Yangys 已提交
394
| callback | AsyncCallback\<[number](#responsecode)\>       | 是   | 回调函数。                                      |
Y
Yangys 已提交
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446

**错误码:**

| 错误码ID   | 错误信息                                                  |
|---------|-------------------------------------------------------|
| 401     | Parameter error.                                      |
| 201     | Permission denied.                                    |
| 2300001 | Unsupported protocol.                                 |
| 2300003 | URL using bad/illegal format or missing URL.          |
| 2300005 | Couldn't resolve proxy name.                          |
| 2300006 | Couldn't resolve host name.                           |
| 2300007 | Couldn't connect to server.                           |
| 2300008 | Weird server reply.                                   |
| 2300009 | Access denied to remote resource.                     |
| 2300016 | Error in the HTTP2 framing layer.                     |
| 2300018 | Transferred a partial file.                           |
| 2300023 | Failed writing received data to disk/application.     |
| 2300025 | Upload failed.                                        |
| 2300026 | Failed to open/read local data from file/application. |
| 2300027 | Out of memory.                                        |
| 2300028 | Timeout was reached.                                  |
| 2300047 | Number of redirects hit maximum amount.               |
| 2300052 | Server returned nothing (no headers, no data).        |
| 2300055 | Failed sending data to the peer.                      |
| 2300056 | Failure when receiving data from the peer.            |
| 2300058 | Problem with the local SSL certificate.               |
| 2300059 | Couldn't use specified SSL cipher.                    |
| 2300060 | SSL peer certificate or SSH remote key was not OK.    |
| 2300061 | Unrecognized or bad HTTP Content or Transfer-Encoding.|
| 2300063 | Maximum file size exceeded.                           |
| 2300070 | Disk full or allocation exceeded.                     |
| 2300073 | Remote file already exists.                           |
| 2300077 | Problem with the SSL CA cert (path? access rights?).  |
| 2300078 | Remote file not found.                                |
| 2300094 | An authentication function returned an error.         |
| 2300999 | Unknown Other Error.                                  |

>**错误码说明:**
> 以上错误码的详细介绍参见[HTTP错误码](../errorcodes/errorcode-net-http.md)。
> HTTP 错误码映射关系:2300000 + curl错误码。更多常用错误码,可参考:[curl错误码](https://curl.se/libcurl/c/libcurl-errors.html)

**示例:**

```js
httpRequest.request2("EXAMPLE_URL",
{
    method: http.RequestMethod.GET,
    header: {
        'Content-Type': 'application/json'
    },
    readTimeout: 60000,
    connectTimeout: 60000
Y
Yangys 已提交
447
}, (err, data) => {
Y
Yangys 已提交
448
    if (!err) {
Y
Yangys 已提交
449
        console.info("request2 OK! ResponseCode is " + JSON.stringify(data));
Y
Yangys 已提交
450 451 452 453 454 455 456
    } else {
        console.info("request2 ERROR : err = " + JSON.stringify(err));
    }
})
```
### request2<sup>10+</sup>

Y
Yangys 已提交
457
request2(url: string, options? : HttpRequestOptions): Promise\<number\>
Y
Yangys 已提交
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475

根据URL地址,发起HTTP网络请求并返回流式响应,使用Promise方式作为异步方法。

**需要权限**:ohos.permission.INTERNET

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名  | 类型               | 必填 | 说明                                            |
| ------- | ------------------ | ---- | ----------------------------------------------- |
| url     | string             | 是   | 发起网络请求的URL地址。                         |
| options | HttpRequestOptions | 否   | 参考[HttpRequestOptions](#httprequestoptions)。 |

**返回值:**

| 类型                                   | 说明                              |
| :------------------------------------- | :-------------------------------- |
Y
Yangys 已提交
476
| Promise\<[number](#responsecode)\> | 以Promise形式返回发起请求的结果。 |
Y
Yangys 已提交
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528

**错误码:**

| 错误码ID   | 错误信息                                                  |
|---------|-------------------------------------------------------|
| 401     | Parameter error.                                      |
| 201     | Permission denied.                                    |
| 2300001 | Unsupported protocol.                                 |
| 2300003 | URL using bad/illegal format or missing URL.          |
| 2300005 | Couldn't resolve proxy name.                          |
| 2300006 | Couldn't resolve host name.                           |
| 2300007 | Couldn't connect to server.                           |
| 2300008 | Weird server reply.                                   |
| 2300009 | Access denied to remote resource.                     |
| 2300016 | Error in the HTTP2 framing layer.                     |
| 2300018 | Transferred a partial file.                           |
| 2300023 | Failed writing received data to disk/application.     |
| 2300025 | Upload failed.                                        |
| 2300026 | Failed to open/read local data from file/application. |
| 2300027 | Out of memory.                                        |
| 2300028 | Timeout was reached.                                  |
| 2300047 | Number of redirects hit maximum amount.               |
| 2300052 | Server returned nothing (no headers, no data).        |
| 2300055 | Failed sending data to the peer.                      |
| 2300056 | Failure when receiving data from the peer.            |
| 2300058 | Problem with the local SSL certificate.               |
| 2300059 | Couldn't use specified SSL cipher.                    |
| 2300060 | SSL peer certificate or SSH remote key was not OK.    |
| 2300061 | Unrecognized or bad HTTP Content or Transfer-Encoding.|
| 2300063 | Maximum file size exceeded.                           |
| 2300070 | Disk full or allocation exceeded.                     |
| 2300073 | Remote file already exists.                           |
| 2300077 | Problem with the SSL CA cert (path? access rights?).  |
| 2300078 | Remote file not found.                                |
| 2300094 | An authentication function returned an error.         |
| 2300999 | Unknown Other Error.                                  |

>**错误码说明:**
> 以上错误码的详细介绍参见[HTTP错误码](../errorcodes/errorcode-net-http.md)。
> HTTP 错误码映射关系:2300000 + curl错误码。更多常用错误码,可参考:

**示例:**

```js
let promise = httpRequest.request("EXAMPLE_URL", {
    method: http.RequestMethod.GET,
    connectTimeout: 60000,
    readTimeout: 60000,
    header: {
        'Content-Type': 'application/json'
    }
});
Y
Yangys 已提交
529 530
promise.then((data) => {
    console.info("request2 OK!" + JSON.stringify(data));
Y
Yangys 已提交
531 532 533 534 535
}).catch((err) => {
    console.info("request2 ERROR : err = " + JSON.stringify(err));
});
```

Y
Yangys 已提交
536
### on('headerReceive')
C
clevercong 已提交
537

Y
Yangys 已提交
538
on(type: 'headerReceive', callback: AsyncCallback\<Object\>): void
C
clevercong 已提交
539 540 541

订阅HTTP Response Header 事件。

Y
Yangys 已提交
542
>**说明:**
Y
Yangys 已提交
543
>此接口已废弃,建议使用[on('headersReceive')<sup>8+</sup>](#onheadersreceive8)替代。
C
clevercong 已提交
544

C
clevercong 已提交
545
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
546

C
clevercong 已提交
547
**参数:**
C
clevercong 已提交
548

C
clevercong 已提交
549 550 551 552
| 参数名   | 类型                    | 必填 | 说明                              |
| -------- | ----------------------- | ---- | --------------------------------- |
| type     | string                  | 是   | 订阅的事件类型,'headerReceive'。 |
| callback | AsyncCallback\<Object\> | 是   | 回调函数。                        |
C
clevercong 已提交
553

C
clevercong 已提交
554
**示例:**
C
clevercong 已提交
555

Z
zengyawen 已提交
556
```js
Y
Yangys 已提交
557 558
httpRequest.on('headerReceive', (data) => {
    console.info('error:' + JSON.stringify(data));
C
clevercong 已提交
559 560
});
```
C
clevercong 已提交
561

Y
Yangys 已提交
562
### off('headerReceive')
C
clevercong 已提交
563

Y
Yangys 已提交
564
off(type: 'headerReceive', callback?: AsyncCallback\<Object\>): void
C
clevercong 已提交
565 566 567

取消订阅HTTP Response Header 事件。

Y
Yangys 已提交
568
>**说明:**
C
clevercong 已提交
569
>
Y
Yangys 已提交
570
>1. 此接口已废弃,建议使用[off('headersReceive')<sup>8+</sup>](#offheadersreceive8)替代。
C
clevercong 已提交
571 572 573
>
>2. 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

C
clevercong 已提交
574
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
575

C
clevercong 已提交
576
**参数:**
C
clevercong 已提交
577

C
clevercong 已提交
578 579 580 581
| 参数名   | 类型                    | 必填 | 说明                                  |
| -------- | ----------------------- | ---- | ------------------------------------- |
| type     | string                  | 是   | 取消订阅的事件类型,'headerReceive'。 |
| callback | AsyncCallback\<Object\> | 否   | 回调函数。                            |
C
clevercong 已提交
582

C
clevercong 已提交
583
**示例:**
C
clevercong 已提交
584

Z
zengyawen 已提交
585
```js
C
clevercong 已提交
586 587
httpRequest.off('headerReceive');
```
C
clevercong 已提交
588

Y
Yangys 已提交
589
### on('headersReceive')<sup>8+</sup>
C
clevercong 已提交
590

Y
Yangys 已提交
591
on(type: 'headersReceive', callback: Callback\<Object\>): void
C
clevercong 已提交
592 593 594

订阅HTTP Response Header 事件。

C
clevercong 已提交
595
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
596

C
clevercong 已提交
597
**参数:**
C
clevercong 已提交
598

C
clevercong 已提交
599 600 601 602
| 参数名   | 类型               | 必填 | 说明                               |
| -------- | ------------------ | ---- | ---------------------------------- |
| type     | string             | 是   | 订阅的事件类型:'headersReceive'。 |
| callback | Callback\<Object\> | 是   | 回调函数。                         |
C
clevercong 已提交
603

C
clevercong 已提交
604
**示例:**
C
clevercong 已提交
605

Z
zengyawen 已提交
606
```js
C
clevercong 已提交
607 608
httpRequest.on('headersReceive', (header) => {
    console.info('header: ' + JSON.stringify(header));
C
clevercong 已提交
609 610
});
```
C
clevercong 已提交
611

Y
Yangys 已提交
612
### off('headersReceive')<sup>8+</sup>
C
clevercong 已提交
613

Y
Yangys 已提交
614
off(type: 'headersReceive', callback?: Callback\<Object\>): void
C
clevercong 已提交
615 616 617

取消订阅HTTP Response Header 事件。

Y
Yangys 已提交
618
>**说明:**
C
clevercong 已提交
619 620
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

C
clevercong 已提交
621
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
622

C
clevercong 已提交
623
**参数:**
C
clevercong 已提交
624

C
clevercong 已提交
625 626 627 628
| 参数名   | 类型               | 必填 | 说明                                   |
| -------- | ------------------ | ---- | -------------------------------------- |
| type     | string             | 是   | 取消订阅的事件类型:'headersReceive'。 |
| callback | Callback\<Object\> | 否   | 回调函数。                             |
C
clevercong 已提交
629

C
clevercong 已提交
630
**示例:**
C
clevercong 已提交
631

Z
zengyawen 已提交
632
```js
C
clevercong 已提交
633 634
httpRequest.off('headersReceive');
```
C
clevercong 已提交
635

Y
Yangys 已提交
636
### once('headersReceive')<sup>8+</sup>
C
clevercong 已提交
637

Y
Yangys 已提交
638
once(type: 'headersReceive', callback: Callback\<Object\>): void
C
clevercong 已提交
639 640 641

订阅HTTP Response Header 事件,但是只触发一次。一旦触发之后,订阅器就会被移除。使用callback方式作为异步方法。

C
clevercong 已提交
642
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
643

C
clevercong 已提交
644
**参数:**
C
clevercong 已提交
645

C
clevercong 已提交
646 647 648 649
| 参数名   | 类型               | 必填 | 说明                               |
| -------- | ------------------ | ---- | ---------------------------------- |
| type     | string             | 是   | 订阅的事件类型:'headersReceive'。 |
| callback | Callback\<Object\> | 是   | 回调函数。                         |
C
clevercong 已提交
650

C
clevercong 已提交
651
**示例:**
C
clevercong 已提交
652

Z
zengyawen 已提交
653
```js
C
clevercong 已提交
654 655
httpRequest.once('headersReceive', (header) => {
    console.info('header: ' + JSON.stringify(header));
C
clevercong 已提交
656 657
});
```
Y
Yangys 已提交
658
### on('dataReceive')<sup>10+</sup>
Y
Yangys 已提交
659

Y
Yangys 已提交
660
on(type: 'dataReceive', callback: Callback\<ArrayBuffer\>): void
Y
Yangys 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680

订阅HTTP流式响应数据接收事件。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                    | 必填 | 说明                              |
| -------- | ----------------------- | ---- | --------------------------------- |
| type     | string                  | 是   | 订阅的事件类型,'dataReceive'。 |
| callback | AsyncCallback\<ArrayBuffer\> | 是   | 回调函数。                        |

**示例:**

```js
httpRequest.on('dataReceive', (data) => {
    console.info('dataReceive length: ' + JSON.stringify(data.byteLength));
});
```

Y
Yangys 已提交
681
### off('dataReceive')<sup>10+</sup>
Y
Yangys 已提交
682

Y
Yangys 已提交
683
off(type: 'dataReceive', callback?: Callback\<ArrayBuffer\>): void
Y
Yangys 已提交
684 685 686

取消订阅HTTP流式响应数据接收事件。

Y
Yangys 已提交
687
>**说明:**
Y
Yangys 已提交
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型               | 必填 | 说明                                   |
| -------- | ------------------ | ---- | -------------------------------------- |
| type     | string             | 是   | 取消订阅的事件类型:'dataReceive'。 |
| callback | Callback\<ArrayBuffer\> | 否   | 回调函数。                             |

**示例:**

```js
httpRequest.off('dataReceive');
```

Y
Yangys 已提交
705
### on('dataEnd')<sup>10+</sup>
Y
Yangys 已提交
706

Y
Yangys 已提交
707
on(type: 'dataEnd', callback: Callback\<void\>): void
Y
Yangys 已提交
708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727

订阅HTTP流式响应数据接收完毕事件。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                    | 必填 | 说明                              |
| -------- | ----------------------- | ---- | --------------------------------- |
| type     | string                  | 是   | 订阅的事件类型,'dataEnd'。 |
| callback | AsyncCallback\<void\>   | 是   | 回调函数。                        |

**示例:**

```js
httpRequest.on('dataReceive', () => {
    console.info('Receive dataEnd!');
});
```

Y
Yangys 已提交
728
### off('dataEnd')<sup>10+</sup>
Y
Yangys 已提交
729 730 731 732 733

off(type: 'dataEnd', callback?: Callback\<void\>): void

取消订阅HTTP流式响应数据接收完毕事件。

Y
Yangys 已提交
734
>**说明:**
Y
Yangys 已提交
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型               | 必填 | 说明                                   |
| -------- | ------------------ | ---- | -------------------------------------- |
| type     | string             | 是   | 取消订阅的事件类型:'dataEnd'。 |
| callback | Callback\<void\>   | 否   | 回调函数。                             |

**示例:**

```js
httpRequest.off('dataEnd');
```

Y
Yangys 已提交
752
### on('dataProgress')<sup>10+</sup>
Y
Yangys 已提交
753

Y
Yangys 已提交
754
 on(type: 'dataProgress', callback: Callback\<{ receiveSize: number, totalSize: number }\>): void
Y
Yangys 已提交
755 756 757 758 759 760 761 762 763 764

订阅HTTP流式响应数据接收进度事件。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                    | 必填 | 说明                              |
| -------- | ----------------------- | ---- | --------------------------------- |
| type     | string                  | 是   | 订阅的事件类型,'dataProgress'。 |
Y
Yangys 已提交
765
| callback | AsyncCallback\<{ receiveSize: number, totalSize: number }\>   | 是   | 回调函数。<br>receiveSize:已接收的数据字节数,totalSize待接收的字节总数 |
Y
Yangys 已提交
766 767 768 769 770

**示例:**

```js
httpRequest.on('dataProgress', (data) => {
Y
Yangys 已提交
771
    console.info('dataProgress:' + JSON.stringify(data));
Y
Yangys 已提交
772 773
});
```
C
clevercong 已提交
774

Y
Yangys 已提交
775
### off('dataProgress')<sup>10+</sup>
Y
Yangys 已提交
776 777 778 779 780

off(type: 'dataProgress', callback?: Callback\<{ receiveSize: number, totalSize: number }\>): void

取消订阅HTTP流式响应数据接收进度事件。

Y
Yangys 已提交
781
>**说明:**
Y
Yangys 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型               | 必填 | 说明                                   |
| -------- | ------------------ | ---- | -------------------------------------- |
| type     | string             | 是   | 取消订阅的事件类型:'dataProgress'。 |
| callback | Callback\<{ receiveSize: number, totalSize: number }\>   | 否   | 回调函数。                             |

**示例:**

```js
httpRequest.off('dataProgress');
```
C
clevercong 已提交
798
## HttpRequestOptions
C
clevercong 已提交
799 800 801

发起请求可选参数的类型和取值范围。

Z
zengyawen 已提交
802
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
803

L
liyufan 已提交
804
| 名称         | 类型                                          | 必填 | 说明                                                         |
805 806
| -------------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| method         | [RequestMethod](#requestmethod)               | 否   | 请求方式。                                                   |
Z
zhuwenchao 已提交
807
| extraData      | string \| Object  \| ArrayBuffer<sup>6+</sup> | 否   | 发送请求的额外数据。<br />- 当HTTP请求为POST、PUT等方法时,此字段为HTTP请求的content。<br />- 当HTTP请求为GET、OPTIONS、DELETE、TRACE、CONNECT等方法时,此字段为HTTP请求的参数补充,参数内容会拼接到URL中进行发送。<sup>6+</sup><br />- 开发者传入string对象,开发者需要自行编码,将编码后的string传入。<sup>6+</sup> |
Y
Yangys 已提交
808
| expectDataType<sup>9+</sup>  | [HttpDataType](#httpdatatype9)  | 否   | 指定返回数据的类型。如果设置了此参数,系统将优先返回指定的类型。 |
L
liyufan123 已提交
809
| usingCache<sup>9+</sup>      | boolean                         | 否   | 是否使用缓存,默认为true。   |
L
liyufan 已提交
810
| priority<sup>9+</sup>        | number                          | 否   | 优先级,范围\[1,1000],默认是1。                           |
Y
Yangys 已提交
811 812 813 814 815
| header                       | Object                          | 否   | HTTP请求头字段。默认{'Content-Type': 'application/json'}。   |
| readTimeout                  | number                          | 否   | 读取超时时间。单位为毫秒(ms),默认为60000ms。              |
| connectTimeout               | number                          | 否   | 连接超时时间。单位为毫秒(ms),默认为60000ms。              |
| usingProtocol<sup>9+</sup>   | [HttpProtocol](#httpprotocol9)  | 否   | 使用协议。默认值由系统自动指定。                             |
| usingProxy<sup>10+</sup>     | boolean \| Object               | 否   | 是否使用HTTP代理,默认为false,不使用代理。<br />- 当usingProxy为布尔类型true时,使用默认网络代理。<br />- 当usingProxy为object类型时,使用指定网络代理。                                |
C
clevercong 已提交
816

C
clevercong 已提交
817
## RequestMethod
C
clevercong 已提交
818 819 820

HTTP 请求方法。

Z
zengyawen 已提交
821
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
822 823 824

| 名称    | 值      | 说明                |
| :------ | ------- | :------------------ |
L
liyufan 已提交
825 826 827 828 829 830 831 832
| OPTIONS | "OPTIONS" | HTTP 请求 OPTIONS。 |
| GET     | "GET"     | HTTP 请求 GET。     |
| HEAD    | "HEAD"    | HTTP 请求 HEAD。    |
| POST    | "POST"    | HTTP 请求 POST。    |
| PUT     | "PUT"     | HTTP 请求 PUT。     |
| DELETE  | "DELETE"  | HTTP 请求 DELETE。  |
| TRACE   | "TRACE"   | HTTP 请求 TRACE。   |
| CONNECT | "CONNECT" | HTTP 请求 CONNECT。 |
C
clevercong 已提交
833

C
clevercong 已提交
834
## ResponseCode
C
clevercong 已提交
835 836 837

发起请求返回的响应码。

Z
zengyawen 已提交
838
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
839 840

| 名称              | 值   | 说明                                                         |
C
clevercong 已提交
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
| ----------------- | ---- | ------------------------------------------------------------ |
| OK                | 200  | 请求成功。一般用于GET与POST请求。                            |
| CREATED           | 201  | 已创建。成功请求并创建了新的资源。                           |
| ACCEPTED          | 202  | 已接受。已经接受请求,但未处理完成。                         |
| NOT_AUTHORITATIVE | 203  | 非授权信息。请求成功。                                       |
| NO_CONTENT        | 204  | 无内容。服务器成功处理,但未返回内容。                       |
| RESET             | 205  | 重置内容。                                                   |
| PARTIAL           | 206  | 部分内容。服务器成功处理了部分GET请求。                      |
| MULT_CHOICE       | 300  | 多种选择。                                                   |
| MOVED_PERM        | 301  | 永久移动。请求的资源已被永久的移动到新URI,返回信息会包括新的URI,浏览器会自动定向到新URI。 |
| MOVED_TEMP        | 302  | 临时移动。                                                   |
| SEE_OTHER         | 303  | 查看其它地址。                                               |
| NOT_MODIFIED      | 304  | 未修改。                                                     |
| USE_PROXY         | 305  | 使用代理。                                                   |
| BAD_REQUEST       | 400  | 客户端请求的语法错误,服务器无法理解。                       |
| UNAUTHORIZED      | 401  | 请求要求用户的身份认证。                                     |
| PAYMENT_REQUIRED  | 402  | 保留,将来使用。                                             |
| FORBIDDEN         | 403  | 服务器理解请求客户端的请求,但是拒绝执行此请求。             |
| NOT_FOUND         | 404  | 服务器无法根据客户端的请求找到资源(网页)。                 |
| BAD_METHOD        | 405  | 客户端请求中的方法被禁止。                                   |
| NOT_ACCEPTABLE    | 406  | 服务器无法根据客户端请求的内容特性完成请求。                 |
| PROXY_AUTH        | 407  | 请求要求代理的身份认证。                                     |
| CLIENT_TIMEOUT    | 408  | 请求时间过长,超时。                                         |
| CONFLICT          | 409  | 服务器完成客户端的PUT请求是可能返回此代码,服务器处理请求时发生了冲突。 |
| GONE              | 410  | 客户端请求的资源已经不存在。                                 |
| LENGTH_REQUIRED   | 411  | 服务器无法处理客户端发送的不带Content-Length的请求信息。     |
| PRECON_FAILED     | 412  | 客户端请求信息的先决条件错误。                               |
| ENTITY_TOO_LARGE  | 413  | 由于请求的实体过大,服务器无法处理,因此拒绝请求。           |
| REQ_TOO_LONG      | 414  | 请求的URI过长(URI通常为网址),服务器无法处理。             |
| UNSUPPORTED_TYPE  | 415  | 服务器无法处理请求的格式。                                   |
| INTERNAL_ERROR    | 500  | 服务器内部错误,无法完成请求。                               |
| NOT_IMPLEMENTED   | 501  | 服务器不支持请求的功能,无法完成请求。                       |
| BAD_GATEWAY       | 502  | 充当网关或代理的服务器,从远端服务器接收到了一个无效的请求。 |
| UNAVAILABLE       | 503  | 由于超载或系统维护,服务器暂时的无法处理客户端的请求。       |
| GATEWAY_TIMEOUT   | 504  | 充当网关或代理的服务器,未及时从远端服务器获取请求。         |
| VERSION           | 505  | 服务器请求的HTTP协议的版本。                                 |

C
clevercong 已提交
878
## HttpResponse
C
clevercong 已提交
879 880 881

request方法回调函数的返回值类型。

Z
zengyawen 已提交
882
**系统能力**:SystemCapability.Communication.NetStack
C
clevercong 已提交
883

L
liyufan 已提交
884
| 名称               | 类型                                         | 必填 | 说明                                                         |
C
clevercong 已提交
885
| -------------------- | -------------------------------------------- | ---- | ------------------------------------------------------------ |
Z
zhuwenchao 已提交
886
| result               | string \| Object \| ArrayBuffer<sup>6+</sup> | 是   | HTTP请求根据响应头中Content-type类型返回对应的响应格式内容:<br />- application/json:返回JSON格式的字符串,如需HTTP响应具体内容,需开发者自行解析<br />- application/octet-stream:ArrayBuffer<br />- 其他:string |
L
liyufan 已提交
887
| resultType<sup>9+</sup> | [HttpDataType](#httpdatatype9)             | 是   | 返回值类型。                           |
Y
Yangys 已提交
888
| responseCode         | [ResponseCode](#responsecode) \| number      | 是   | 回调函数执行成功时,此字段为[ResponseCode](#responsecode)。若执行失败,错误码将会从AsyncCallback中的err字段返回。 |
889
| header               | Object                                       | 是   | 发起HTTP请求返回来的响应头。当前返回的是JSON格式字符串,如需具体字段内容,需开发者自行解析。常见字段及解析方式如下:<br/>- Content-Type:header['Content-Type'];<br />- Status-Line:header['Status-Line'];<br />- Date:header.Date/header['Date'];<br />- Server:header.Server/header['Server']; |
Z
zhanghaifeng 已提交
890
| cookies<sup>8+</sup> | string                                       | 是   | 服务器返回的 cookies。                                       |
C
clevercong 已提交
891

L
liyufan 已提交
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
## http.createHttpResponseCache<sup>9+</sup>

createHttpResponseCache(cacheSize?: number): HttpResponseCache

创建一个默认的对象来存储HTTP访问请求的响应。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                    | 必填 | 说明       |
| -------- | --------------------------------------- | ---- | ---------- |
| cacheSize | number | 否 | 缓存大小最大为10\*1024\*1024(10MB),默认最大。 |

**返回值:**

| 类型        | 说明                                                         |
| :---------- | :----------------------------------------------------------- |
| [HttpResponseCache](#httpresponsecache9) | 返回一个存储HTTP访问请求响应的对象。 |

**示例:**

```js
import http from '@ohos.net.http';
let httpResponseCache = http.createHttpResponseCache();
```

## HttpResponseCache<sup>9+</sup>

Y
Yangys 已提交
921
存储HTTP访问请求响应的对象。在调用HttpResponseCache的方法前,需要先通过[createHttpResponseCache()](#httpcreatehttpresponsecache9)创建一个任务。
L
liyufan 已提交
922 923 924

### flush<sup>9+</sup>

Y
Yangys 已提交
925
flush(callback: AsyncCallback\<void\>): void
L
liyufan 已提交
926 927 928 929 930 931 932 933 934

将缓存中的数据写入文件系统,以便在下一个HTTP请求中访问所有缓存数据,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                    | 必填 | 说明       |
| -------- | --------------------------------------- | ---- | ---------- |
Y
Yangys 已提交
935
| callback | AsyncCallback\<void\> | 是   | 回调函数返回写入结果。 |
L
liyufan 已提交
936

Y
Yangys 已提交
937 938 939 940 941
**示例:**

```js
httpResponseCache.flush(err => {
  if (err) {
Y
Yangys 已提交
942
    console.info('flush fail');
Y
Yangys 已提交
943 944
    return;
  }
Y
Yangys 已提交
945
  console.info('flush success');
946
});
Y
Yangys 已提交
947 948 949 950
```

### flush<sup>9+</sup>

Y
Yangys 已提交
951
flush(): Promise\<void\>
Y
Yangys 已提交
952 953 954 955 956 957 958 959 960

将缓存中的数据写入文件系统,以便在下一个HTTP请求中访问所有缓存数据,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**返回值:**

| 类型                              | 说明                                  |
| --------------------------------- | ------------------------------------- |
Y
Yangys 已提交
961
| Promise\<void\> | 以Promise形式返回写入结果。 |
Y
Yangys 已提交
962

L
liyufan 已提交
963 964 965
**示例:**

```js
Y
YOUR_NAME 已提交
966
httpResponseCache.flush().then(() => {
Y
Yangys 已提交
967
  console.info('flush success');
L
liyufan 已提交
968
}).catch(err => {
Y
Yangys 已提交
969
  console.info('flush fail');
L
liyufan 已提交
970 971 972 973 974
});
```

### delete<sup>9+</sup>

Y
Yangys 已提交
975
delete(callback: AsyncCallback\<void\>): void
L
liyufan 已提交
976 977 978 979 980 981 982 983 984

禁用缓存并删除其中的数据,使用callback方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

**参数:**

| 参数名   | 类型                                    | 必填 | 说明       |
| -------- | --------------------------------------- | ---- | ---------- |
Y
Yangys 已提交
985
| callback | AsyncCallback\<void\> | 是   | 回调函数返回删除结果。|
L
liyufan 已提交
986 987 988 989 990 991

**示例:**

```js
httpResponseCache.delete(err => {
  if (err) {
Y
Yangys 已提交
992
    console.info('delete fail');
L
liyufan 已提交
993 994
    return;
  }
Y
Yangys 已提交
995
  console.info('delete success');
L
liyufan 已提交
996 997 998 999
});
```
### delete<sup>9+</sup>

Y
Yangys 已提交
1000
delete(): Promise\<void\>
L
liyufan 已提交
1001 1002 1003 1004 1005

禁用缓存并删除其中的数据,使用Promise方式作为异步方法。

**系统能力**:SystemCapability.Communication.NetStack

L
liyufan 已提交
1006
**返回值:**
L
liyufan 已提交
1007 1008 1009

| 类型                              | 说明                                  |
| --------------------------------- | ------------------------------------- |
Y
Yangys 已提交
1010
| Promise\<void\> | 以Promise形式返回删除结果。 |
L
liyufan 已提交
1011 1012 1013 1014

**示例:**

```js
Y
YOUR_NAME 已提交
1015
httpResponseCache.delete().then(() => {
Y
Yangys 已提交
1016
  console.info('delete success');
L
liyufan 已提交
1017
}).catch(err => {
Y
Yangys 已提交
1018
  console.info('delete fail');
L
liyufan 已提交
1019 1020 1021 1022 1023 1024 1025
});
```

## HttpDataType<sup>9+</sup>

http的数据类型。

Y
YOUR_NAME 已提交
1026 1027
**系统能力**:SystemCapability.Communication.NetStack

L
liyufan 已提交
1028
| 名称 | 值 | 说明     |
Y
Yangys 已提交
1029
| ------------------  | -- | ----------- |
L
liyufan 已提交
1030 1031 1032
| STRING              | 0 | 字符串类型。 |
| OBJECT              | 1 | 对象类型。    |
| ARRAY_BUFFER        | 2 | 二进制数组类型。|
L
liyufan 已提交
1033 1034 1035 1036 1037

## HttpProtocol<sup>9+</sup>

http协议版本。

Y
YOUR_NAME 已提交
1038 1039
**系统能力**:SystemCapability.Communication.NetStack

L
liyufan 已提交
1040 1041 1042 1043
| 名称  | 说明     |
| :-------- | :----------- |
| HTTP1_1   |  协议http1.1  |
| HTTP2     |  协议http2    |