未验证 提交 f33d19be 编写于 作者: O openharmony_ci 提交者: Gitee

!4207 【OpenHarmony开源贡献者计划2022】connectivity英文格式及表达问题

Merge pull request !4207 from king_he/0521-a
...@@ -13,19 +13,19 @@ To use related APIs, you must declare the **ohos.permission.INTERNET** permissio ...@@ -13,19 +13,19 @@ To use related APIs, you must declare the **ohos.permission.INTERNET** permissio
The following table describes the related APIs. The following table describes the related APIs.
| API | Description | | API | Description |
| ----------------------------------------- | ----------------------------------- | | ----------------------------------------- | --------------------------------------------------------- |
| createHttp() | Creates an HTTP request. | | createHttp() | Creates an HTTP request. |
| request() | Initiates an HTTP request to a given URL. | | request() | Initiates an HTTP request to a given URL. |
| destroy() | Destroys an HTTP request. | | destroy() | Destroys an HTTP request. |
| on(type: 'headersReceive') | Registers an observer for HTTP Response Header events. | | on(type: 'headersReceive') | Registers an observer for HTTP Response Header events. |
| off(type: 'headersReceive') | Unregisters the observer for HTTP Response Header events.| | off(type: 'headersReceive') | Unregisters the observer for HTTP Response Header events. |
## How to Develop ## How to Develop
1. Import the required HTTP module. 1. Import the required HTTP module.
2. Create an **HttpRequest** object. 2. Create an **HttpRequest** object.
3. (Optional) Listen for HTTP Response Header events. 3. (Optional) Listen for HTTP Response Header events.
4. Initiates an HTTP request to a given URL. 4. Initiate an HTTP request to a given URL.
5. (Optional) Process the HTTP Response Header event and the return result of the HTTP request. 5. (Optional) Process the HTTP Response Header event and the return result of the HTTP request.
```js ```js
......
...@@ -10,26 +10,26 @@ Your application can transmit data through Socket connections. Currently, the TC ...@@ -10,26 +10,26 @@ Your application can transmit data through Socket connections. Currently, the TC
The Socket connection function is mainly implemented by the Socket module. The following table describes the related APIs. The Socket connection function is mainly implemented by the Socket module. The following table describes the related APIs.
| API| Description| | API| Description |
| -------- | -------- | | -------- | -------- |
| constructUDPSocketInstance() | Creates a **UDPSocket** object.| | constructUDPSocketInstance() | Creates a **UDPSocket** object. |
| constructTCPSocketInstance() | Creates a **TCPSocket** object.| | constructTCPSocketInstance() | Creates a **TCPSocket** object. |
| bind() | Binds the IP address and port number.| | bind() | Binds the IP address and port number. |
| send() | Sends data.| | send() | Sends data.|
| close() | Closes a Socket connection.| | close() | Closes a Socket connection. |
| getState() | Obtains the Socket connection status.| | getState() | Obtains the Socket connection status. |
| connect() | Connects to the specified IP address and port. This function is supported only for TCP.| | connect() | Connects to the specified IP address and port. This function is supported only for TCP. |
| getRemoteAddress() | Obtains the peer address of the Socket connection. This function is supported only for TCP. The **connect** API must have been called before you use this API.| | getRemoteAddress() | Obtains the peer address of the Socket connection. This function is supported only for TCP. The **connect** API must have been called before you use this API. |
| on(type: 'message') | Enables listening for **message** events of the Socket connection.| | on(type: 'message') | Enables listening for **message** events of the Socket connection. |
| off(type: 'message') | Disables listening for **message** events of the Socket connection.| | off(type: 'message') | Disables listening for **message** events of the Socket connection. |
| on(type: 'close') | Enables listening for **close** events of the Socket connection.| | on(type: 'close') | Enables listening for **close** events of the Socket connection. |
| off(type: 'close') | Disables listening for **close** events of the Socket connection.| | off(type: 'close') | Disables listening for **close** events of the Socket connection. |
| on(type: 'error') | Enables listening for **error** events of the Socket connection.| | on(type: 'error') | Enables listening for **error** events of the Socket connection. |
| off(type: 'error') | Disables listening for **error** events of the Socket connection.| | off(type: 'error') | Disables listening for **error** events of the Socket connection. |
| on(type: 'listening') | Enables listening for **listening** events of the UDPSocket connection. | | on(type: 'listening') | Enables listening for **listening** events of the UDPSocket connection. |
| off(type: 'listening') | Disables listening for **listening** events of the UDPSocket connection. | | off(type: 'listening') | Disables listening for **listening** events of the UDPSocket connection. |
| on(type: 'connect') | Enables listening for **connect** events of the TCPSocket connection. | | on(type: 'connect') | Enables listening for **connect** events of the TCPSocket connection. |
| off(type: 'connect') | Disables listening for **connect** events of the TCPSocket connection.| | off(type: 'connect') | Disables listening for **connect** events of the TCPSocket connection. |
## How to Develop ## How to Develop
......
...@@ -12,20 +12,20 @@ If an error occurs in any of the preceding processes, the client will receive a ...@@ -12,20 +12,20 @@ If an error occurs in any of the preceding processes, the client will receive a
The WebSocket connection function is mainly implemented by the WebSocket module. To use related APIs, you must declare the **ohos.permission.INTERNET** permission. The following table describes the related APIs. The WebSocket connection function is mainly implemented by the WebSocket module. To use related APIs, you must declare the **ohos.permission.INTERNET** permission. The following table describes the related APIs.
| API| Description| | API | Description |
| -------- | -------- | | -------- | -------- |
| createWebSocket() | Creates a WebSocket connection.| | createWebSocket() | Creates a WebSocket connection. |
| connect() | Establishes a WebSocket connection to a given URL.| | connect() | Establishes a WebSocket connection to a given URL. |
| send() | Sends data through the WebSocket connection.| | send() | Sends data through the WebSocket connection. |
| close() | Closes a WebSocket connection.| | close() | Closes a WebSocket connection. |
| on(type: 'open') | Enables listening for **open** events of a WebSocket connection.| | on(type: 'open') | Enables listening for **open** events of a WebSocket connection. |
| off(type: 'open') | Disables listening for **open** events of a WebSocket connection.| | off(type: 'open') | Disables listening for **open** events of a WebSocket connection. |
| on(type: 'message') | Enables listening for **message** events of a WebSocket connection.| | on(type: 'message') | Enables listening for **message** events of a WebSocket connection. |
| off(type: 'message') | Disables listening for **message** events of a WebSocket connection.| | off(type: 'message') | Disables listening for **message** events of a WebSocket connection. |
| on(type: 'close') | Enables listening for **close** events of a WebSocket connection.| | on(type: 'close') | Enables listening for **close** events of a WebSocket connection. |
| off(type: 'close') | Disables listening for **close** events of a WebSocket connection.| | off(type: 'close') | Disables listening for **close** events of a WebSocket connection. |
| on(type: 'error') | Enables listening for **error** events of a WebSocket connection.| | on(type: 'error') | Enables listening for **error** events of a WebSocket connection. |
| off(type: 'error') | Disables listening for **error** events of a WebSocket connection.| | off(type: 'error') | Disables listening for **error** events of a WebSocket connection. |
## How to Develop ## How to Develop
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册