js-apis-http.md 20.8 KB
Newer Older
C
clevercong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 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 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 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 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
# 数据请求<a name="ZH-CN_TOPIC_0000001171944450"></a>

-   [导入模块](#s56d19203690d4782bfc74069abb6bd71)
-   [权限列表](#section11257113618419)
-   [完整示例](#section119676440437)
-   [http.createHttp](#section375081875219)
-   [HttpRequest](#section775213486457)
    -   [request](#section08941433184616)
    -   [request](#section1361727114718)
    -   [request](#section47538114482)
    -   [destroy](#section613614500483)
    -   [on\('headerReceive'\)](#section617831813498)
    -   [off\('headerReceive'\)](#section017612118508)
    -   [on\('headersReceive'\)<sup>8+</sup>](#section6178318134982)
    -   [off\('headersReceive'\)<sup>8+</sup>](#section0176121185082)
    -   [once\('headersReceive'\)<sup>8+</sup>](#section68221041134718)
-   [HttpRequestOptions](#section12262183471518)
-   [RequestMethod](#section63024410264)
-   [ResponseCode](#section769218832018)
-   [HttpResponse](#section15920192914312)

>![](public_sys-resources/icon-note.gif) **说明:** 
>
>本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>
>本模块所有接口需要设备具有系统能力:SystemCapability.Communication.NetStack

## 导入模块<a name="s56d19203690d4782bfc74069abb6bd71"></a>

```
import http from '@ohos.net.http';
```

## 权限列表<a name="section11257113618419"></a>

ohos.permission.INTERNET

## 完整示例<a name="section119676440437"></a>

```
import http from '@ohos.net.http';

// 每一个httpRequest对应一个http请求任务,不可复用
let httpRequest = http.createHttp();
// 用于订阅http响应头,此接口会比request请求先返回。可以根据业务需要订阅此消息
// 从API 8开始,使用on('headersReceive', Callback)替代on('headerReceive', AsyncCallback)。 8+
httpRequest.on('headersReceive', (data) => {
    console.info('header: ' + data.header);
});
httpRequest.request(
    // 填写http请求的url地址,可以带参数也可以不带参数。URL地址需要开发者自定义。GET请求的参数可以在extraData中指定
    "EXAMPLE_URL",
    {
        method: 'POST', // 可选,默认为“GET”
        // 开发者根据自身业务需要添加header字段
        header: {
            'Content-Type': 'application/json'
        },
        // 当使用POST请求时此字段用于传递内容
 
        extraData: {
            "data": "data to send",
        },
        connectTimeout: 60000, // 可选,默认为60s
        readTimeout: 60000, // 可选,默认为60s
    },(err, data) => {
        if (!err) {
            // data.result为http响应内容,可根据业务需要进行解析
            console.info('Result:' + data.result);
            console.info('code:' + data.responseCode);
            // data.header为http响应头,可根据业务需要进行解析
            console.info('header:' + data.header);
            console.info('cookies:' + data.cookies); // 8+
        } else {
            console.info('error:' + err);
            // 当该请求使用完毕时,调用destroy方法主动销毁。
            httpRequest.destroy();
        }
    }
);
```

## http.createHttp<a name="section375081875219"></a>

createHttp\(\): HttpRequest

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

-   返回值

    | 类型        | 说明                                                         |
    | :---------- | :----------------------------------------------------------- |
    | HttpRequest | 返回一个HttpRequest对象,里面包括request、destroy、on和off方法。 |
    
-   示例

    ```
    import http from '@ohos.net.http';
    let httpRequest = http.createHttp();
    ```


## HttpRequest<a name="section775213486457"></a>

http请求任务。在调用HttpRequest的方法前,需要先通过[createHttp\(\)](#section375081875219)创建一个任务。

### request<a name="section08941433184616"></a>

request\(url: string, callback: AsyncCallback\<HttpResponse\>\):void

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

- 参数

  | 参数名   | 类型                                                    | 必填 | 说明                    |
  | -------- | ------------------------------------------------------- | ---- | ----------------------- |
  | url      | string                                                  | 是   | 发起网络请求的URL地址。 |
  | callback | AsyncCallback\<[HttpResponse](#section12262183471518)\> | 是   | 回调函数。              |

-   示例

    ```
    let httpRequest = http.createHttp();
    httpRequest.request("EXAMPLE_URL", (err, data) => {
      if (!err) {
        console.info('Result:' + data.result);
        console.info('code:' + data.responseCode);
        console.info('header:' + data.header);
        console.info('cookies:' + data.cookies); // 8+
      } else {
        console.info('error:' + err.data);
      }
    });
    ```


### request<a name="section1361727114718"></a>

request\(url: string, options: HttpRequestOptions, callback: AsyncCallback<HttpResponse\>\):void

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

- 参数

  | 参数名   | 类型                                                    | 必填 | 说明                                               |
  | -------- | ------------------------------------------------------- | ---- | -------------------------------------------------- |
  | url      | string                                                  | 是   | 发起网络请求的URL地址。                            |
  | options  | HttpRequestOptions                                      | 是   | 参考[HttpRequestOptions](#section12262183471518)。 |
  | callback | AsyncCallback\<[HttpResponse](#section12262183471518)\> | 是   | 回调函数。                                         |

-   示例

    ```
    let httpRequest= http.createHttp();
    httpRequest.request("EXAMPLE_URL",
    {
      method: 'GET',
      header: {
        'Content-Type': 'application/json'
      },
      readTimeout: 60000,
      connectTimeout: 60000
    },(err, data) => {
      if (!err) {
        console.info('Result:' + data.result);
        console.info('code:' + data.responseCode);
        console.info('header:' + 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']);
        console.info('header.Date:' + data.header.Date);
        console.info('header.Server:' + data.header.Server);
      } else {
        console.info('error:' + err.data);
      }
    });
    ```


### request<a name="section47538114482"></a>

request\(url: string, options? : HttpRequestOptions\): Promise<HttpResponse\>

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

- 参数

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

- 返回值

  | 类型                  | 说明                              |
  | :-------------------- | :-------------------------------- |
  | Promise<[HttpResponse](#section12262183471518)> | 以Promise形式返回发起请求的结果。 |


-   示例

    ```
    let httpRequest= http.createHttp();
    let promise = httpRequest.request("EXAMPLE_URL", {
      method: "GET",
      connectTimeout: 60000,
      readTimeout: 60000,
      header: {
        'Content-Type': 'application/json'
      }
    });
    promise.then((value) => {
        console.info('Result:' + value.result);
        console.info('code:' + value.responseCode);
        console.info('header:' + value.header);
        console.info('cookies:' + value.cookies); // 8+
        console.info('header['Content-Type']:' + value.header['Content-Type']);
        console.info('header['Status-Line']:' + value.header['Status-Line']);
        console.info('header.Date:' + value.header.Date);
        console.info('header.Server:' + value.header.Server);
    }).catch((err) => {
        console.error(`errCode:${err.code}, errMessage:${err.data}`);
    });
    ```


### destroy<a name="section613614500483"></a>

destroy\(\): void

中断请求任务。

-   示例

    ```
    let httpRequest= http.createHttp();
    httpRequest.destroy();
    ```


### on\('headerReceive'\)<a name="section617831813498"></a>

on\(type: 'headerReceive', callback: AsyncCallback<Object\>\):void

订阅HTTP Response Header 事件。

>![](public_sys-resources/icon-note.gif) **说明:** 
> 此接口已废弃,建议使用on\('headersReceive'\)替代。

- 参数

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

-   示例

    ```
    let httpRequest= http.createHttp();
    httpRequest.on('headerReceive', (err, data) => {
      if (!err) {
        console.info('header: ' + data.header);
      } else {
        console.info('error:' + err.data);
      }
    });
    ```


### off\('headerReceive'\)<a name="section017612118508"></a>

off\(type: 'headerReceive', callback?: AsyncCallback<Object\>\):void

取消订阅HTTP Response Header 事件。

>![](public_sys-resources/icon-note.gif) **说明:** 
>
>1. 此接口已废弃,建议使用off\('headersReceive'\)替代。
>
>2. 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

- 参数

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

-   示例

    ```
    let httpRequest= http.createHttp();
    httpRequest.on('headerReceive', (err, data) => {
      if (!err) {
        console.info('header: ' + data.header);
      } else {
        console.info('error:' + err.data);
      }
    });
    httpRequest.off('headerReceive');
    ```

### on\('headersReceive'\)<sup>8+</sup><a name="section6178318134982"></a>

on\(type: 'headersReceive', callback: Callback<Object\>\):void

订阅HTTP Response Header 事件。

- 参数

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

-   示例

    ```
    let httpRequest= http.createHttp();
    httpRequest.on('headersReceive', (data) => {
      console.info('header: ' + data.header);
    });
    ```


### off\('headersReceive'\)<sup>8+</sup><a name="section0176121185082"></a>

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

取消订阅HTTP Response Header 事件。

>![](public_sys-resources/icon-note.gif) **说明:** 
>可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅。

- 参数

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

-   示例

    ```
    let httpRequest= http.createHttp();
    httpRequest.off('headersReceive');
    ```

### once\('headersReceive'\)<sup>8+</sup><a name="section68221041134718"></a>

once\(type: "headersReceive", callback: Callback<Object\>\): void

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

- 参数

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

-   示例

    ```
    let httpRequest= http.createHttp();
    httpRequest.once('headersReceive', (data) => {
      console.info('header: ' + data.header);
    });
    ```

## HttpRequestOptions<a name="section12262183471518"></a>

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

| 参数           | 类型                                 | 必填 | 说明                                                       |
| -------------- | ------------------------------------ | ---- | ---------------------------------------------------------- |
| method         | [RequestMethod](#section63024410264) | 否   | 请求方式。                                                 |
| extraData      | string \| Object  \| ArrayBuffer8+   | 否   | 发送请求的额外数据。详见下方说明。                         |
| header         | Object                               | 否   | HTTP请求头字段。默认{'Content-Type': 'application/json'}。 |
| readTimeout    | number                               | 否   | 读取超时时间。单位为毫秒(ms),默认为60000ms。            |
| connectTimeout | number                               | 否   | 连接超时时间。单位为毫秒(ms),默认为60000ms。            |

> ![](public_sys-resources/icon-note.gif) **说明:** 
>
> 1. 当HTTP请求为POST、PUT等方法时,此字段为HTTP请求的content。
>
> 2. 当HTTP请求为GET、OPTIONS、DELETE、TRACE、CONNECT等方法时,此字段为HTTP请求的参数补充,参数内容会拼接到URL中进行发送。8+
>
> 3. 开发者传入string对象,开发者需要自行编码,将编码后的string传入。8+

## RequestMethod<a name="section63024410264"></a>

HTTP 请求方法。

| **method 的合法值** | 说明                |
| :------------------ | :------------------ |
| OPTIONS             | HTTP 请求 OPTIONS。 |
| GET                 | HTTP 请求 GET。     |
| HEAD                | HTTP 请求 HEAD。    |
| POST                | HTTP 请求 POST。    |
| PUT                 | HTTP 请求 PUT。     |
| DELETE              | HTTP 请求 DELETE。  |
| TRACE               | HTTP 请求 TRACE。   |
| CONNECT             | HTTP 请求 CONNECT。 |

## ResponseCode<a name="section769218832018"></a>

发起请求返回的响应码。

| 变量              | 值   | 说明                                                         |
| ----------------- | ---- | ------------------------------------------------------------ |
| 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协议的版本。                                 |

## HttpResponse<a name="section15920192914312"></a>

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

| 参数名       | 类型                                           | 必填 | 说明                                                         |
| ------------ | ---------------------------------------------- | ---- | ------------------------------------------------------------ |
| result       | string \| Object \| ArrayBuffer8+              | 是   | Http请求根据响应头中Content-type类型返回对应的响应格式内容。详见下方说明。 |
| responseCode | [ResponseCode](#section769218832018) \| number | 是   | 回调函数执行成功时,此字段为[ResponseCode](#section769218832018)。若执行失败,错误码将会从AsyncCallback中的err字段返回。错误码如下:<br />- 200:通用错误<br />- 202:参数错误<br />- 300:I/O错误 |
| 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']; |
| cookies8+    | Array\<string\>                                | 是   | 服务器返回的 cookies。                                       |

> ![](public_sys-resources/icon-note.gif) **说明:** 
>
> 根据响应头中Content-type类型的不同,返回的类型不同:
>
> - application/json:返回JSON格式的字符串,如需Http响应具体内容,需开发者自行解析
> - application/octet-stream:ArrayBuffer
> - 其他:string