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

!2797 修复示例代码未放在```中的问题

Merge pull request !2797 from xuzhihao/master
......@@ -26,7 +26,7 @@ Starts a Particle ability. This API uses an asynchronous callback to return the
| Name | Type | Mandatory| Description |
| --------- | ----------------------------------------------- | ---- | ----------------- |
| parameter | [StartAbilityParameter](#startabilityparameter) | Yes | Ability to start.|
| parameter | [StartAbilityParameter](js-apis-featureAbility.md#startabilityparameter) | Yes | Ability to start.|
| callback | AsyncCallback\<void> | Yes | Callback used to return the result. |
**Example**
......@@ -69,7 +69,7 @@ Starts a Particle ability. This API uses a promise to return the result.
| Name | Type | Mandatory| Description |
| --------- | ----------------------------------------------- | ---- | ----------------- |
| parameter | [StartAbilityParameter](#startabilityparameter) | Yes | Ability to start.|
| parameter | [StartAbilityParameter](js-apis-featureAbility.md#startabilityparameter) | Yes | Ability to start.|
**Return value**
......@@ -384,7 +384,7 @@ Connects this ability to a specific Service ability. This API uses a callback to
| Name | Type | Mandatory| Description |
| ------- | -------------- | ---- | ---------------------------- |
| request | [Want](#want) | Yes | Service ability to connect.|
| request | [Want](js-apis-featureAbility.md#want) | Yes | Service ability to connect.|
| options | ConnectOptions | Yes | Callback used to return the result. |
......
......@@ -2075,7 +2075,7 @@ put(key: string, value: Uint8Array | string | number | boolean, callback: AsyncC
| ----- | ------ | ---- | ----------------------- |
| key | string | 是 |要添加数据的key,不能为空且长度不大于[MAX_KEY_LENGTH](#constants)。 |
| value | Uint8Array \| string \| number \| boolean | 是 |要添加数据的value,支持Uint8Array、number 、 string 、boolean,Uint8Array、string 的长度不大于[MAX_VALUE_LENGTH](#constants)。 |
| callback | AsyncCallback&lt;void> | 是 |回调函数。 |
| callback | AsyncCallback&lt;void&gt; | 是 |回调函数。 |
**示例**
......@@ -2967,7 +2967,7 @@ try {
### get
get(key: string): Promise&lt;Uint8Array | string | boolean | number>
get(key: string): Promise&lt;Uint8Array | string | boolean | number&gt;
获取指定键的值,并通过Promise方式返回,此方法为异步方法。
......
......@@ -26,7 +26,7 @@ startAbility(parameter: StartAbilityParameter, callback: AsyncCallback\<void>):
| 名称 | 类型 | 必填 | 描述 |
| --------- | ----------------------------------------------- | ---- | ----------------- |
| parameter | [StartAbilityParameter](#startabilityparameter) | 是 | 指示启动的ability |
| parameter | [StartAbilityParameter](js-apis-featureAbility.md#startabilityparameter) | 是 | 指示启动的ability |
| callback | AsyncCallback\<void> | 是 | 被指定的回调方法 |
**示例:**
......@@ -69,7 +69,7 @@ startAbility(parameter: StartAbilityParameter): Promise\<void>;
| 名称 | 类型 | 必填 | 描述 |
| --------- | ----------------------------------------------- | ---- | ----------------- |
| parameter | [StartAbilityParameter](#startabilityparameter) | 是 | 指示启动的ability |
| parameter | [StartAbilityParameter](js-apis-featureAbility.md#startabilityparameter) | 是 | 指示启动的ability |
**返回值:**
......@@ -384,7 +384,7 @@ connectAbility(request: Want, options:ConnectOptions): number
| 名称 | 类型 | 必填 | 描述 |
| ------- | -------------- | ---- | ---------------------------- |
| request | [Want](#want) | 是 | 表示被连接的ServiceAbility。 |
| request | [Want](js-apis-featureAbility.md#want) | 是 | 表示被连接的ServiceAbility。 |
| options | ConnectOptions | 是 | 被指定的回调方法。 |
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册