js-apis-app-form-formHost.md 67.8 KB
Newer Older
Y
yangzk 已提交
1
# @ohos.app.form.formHost (formHost)
Y
yanwenhao 已提交
2

Y
yangzk 已提交
3
formHost模块提供了卡片使用方相关接口的能力,包括对使用方同一用户下安装的卡片进行删除、释放、请求更新、获取卡片信息、状态等操作。
Y
yanwenhao 已提交
4 5 6 7 8 9 10 11

> **说明:**
>
> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
> 本模块接口均为系统接口。

## 导入模块

M
m00512953 已提交
12
```ts
Y
yanwenhao 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
import formHost from '@ohos.app.form.formHost';
```

## deleteForm

deleteForm(formId: string, callback: AsyncCallback<void>): void

删除指定的卡片。调用此方法后,应用程序将无法使用该卡片,卡片管理器服务不再保留有关该卡片的信息。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |
| callback | AsyncCallback<void> | 是 | 回调函数。当删除指定的卡片成功,error为undefined,否则为错误对象 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
37 38 39 40 41 42 43 44
| 201 | Permissions denied. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 202 | The application is not a system application. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
45
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
46 47 48

**示例:**

M
m00512953 已提交
49
```ts
C
chenyuyan 已提交
50 51
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
52
try {
M
mingxihua 已提交
53
  let formId = '12400633174999288';
Y
yangzk 已提交
54
  formHost.deleteForm(formId, (error) => {
Y
yanwenhao 已提交
55
  if (error) {
M
mingxihua 已提交
56
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
57 58 59 60 61
  } else {
    console.log('formHost deleteForm success');
  }
  });
} catch (error) {
M
mingxihua 已提交
62
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
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
}
```

## deleteForm

deleteForm(formId: string): Promise<void>

删除指定的卡片。调用此方法后,应用程序将无法使用该卡片,卡片管理器服务不再保留有关该卡片的信息。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise<void> | 无返回结果的Promise对象。 |


**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
93 94 95 96 97 98 99 100
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
101
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
102 103 104

**参数:**

M
m00512953 已提交
105
```ts
C
chenyuyan 已提交
106 107
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
108
try {
M
mingxihua 已提交
109
  let formId = '12400633174999288';
Y
yanwenhao 已提交
110 111 112
  formHost.deleteForm(formId).then(() => {
    console.log('formHost deleteForm success');
  }).catch((error) => {
M
mingxihua 已提交
113
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
114 115
  });
} catch(error) {
M
mingxihua 已提交
116
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
}
```

## releaseForm

releaseForm(formId: string, callback: AsyncCallback<void>): void

释放指定的卡片。调用此方法后,应用程序将无法使用该卡片,但卡片管理器服务仍然保留有关该卡片的缓存信息和存储信息。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |
| callback | AsyncCallback<void> | 是 | 回调函数。当释放指定的卡片成功,error为undefined;否则为错误对象。|

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
141 142 143 144 145 146 147 148
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
149
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
150 151 152

**示例:**

M
m00512953 已提交
153
```ts
C
chenyuyan 已提交
154 155
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
156
try {
M
mingxihua 已提交
157
  let formId = '12400633174999288';
Y
yangzk 已提交
158
  formHost.releaseForm(formId, (error) => {
Y
yanwenhao 已提交
159
    if (error) {
M
mingxihua 已提交
160
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
161 162 163
    }
  });
} catch(error) {
M
mingxihua 已提交
164
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
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
}
```

## releaseForm

releaseForm(formId: string, isReleaseCache: boolean, callback: AsyncCallback<void>): void

释放指定的卡片。调用此方法后,应用程序将无法使用该卡片,卡片管理器服务保留有关该卡片的存储信息,可以选择是否保留缓存信息。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名         | 类型     | 必填 | 说明        |
| -------------- | ------  | ---- | ----------- |
| formId         | string  | 是   | 卡片标识。     |
| isReleaseCache | boolean | 是   | 是否释放缓存。 |
| callback | AsyncCallback<void> | 是 | 回调函数。当释放指定的卡片成功,error为undefined;否则为错误对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
190 191 192 193 194 195 196 197
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
198
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
199 200 201

**示例:**

M
m00512953 已提交
202
```ts
C
chenyuyan 已提交
203 204
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
205
try {
M
mingxihua 已提交
206
  let formId = '12400633174999288';
Y
yangzk 已提交
207
  formHost.releaseForm(formId, true, (error) => {
Y
yanwenhao 已提交
208
    if (error) {
M
mingxihua 已提交
209
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
210 211 212
    }
  });
} catch(error) {
M
mingxihua 已提交
213
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
}
```

## releaseForm

releaseForm(formId: string, isReleaseCache?: boolean): Promise<void>

释放指定的卡片。调用此方法后,应用程序将无法使用该卡片,卡片管理器服务保留有关该卡片的存储信息,可以选择是否保留缓存信息。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名         | 类型     | 必填 | 说明        |
| -------------- | ------  | ---- | ----------- |
| formId         | string  | 是   | 卡片标识。     |
W
form  
wangkailong 已提交
232
| isReleaseCache | boolean | 否   | 是否释放缓存,默认为false。  |
Y
yanwenhao 已提交
233 234 235 236 237 238 239 240 241 242 243

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise<void> | 无返回结果的Promise对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
244 245 246 247 248 249 250 251
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
252
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
253 254 255

**示例:**

M
m00512953 已提交
256
```ts
C
chenyuyan 已提交
257 258
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
259
try {
M
mingxihua 已提交
260
  let formId = '12400633174999288';
Y
yanwenhao 已提交
261 262 263
  formHost.releaseForm(formId, true).then(() => {
    console.log('formHost releaseForm success');
  }).catch((error) => {
M
mingxihua 已提交
264
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
265 266
  });
} catch(error) {
M
mingxihua 已提交
267
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
}
```

## requestForm

requestForm(formId: string, callback: AsyncCallback<void>): void

请求卡片更新。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |
| callback | AsyncCallback<void> | 是 | 回调函数。当请求卡片更新成功,error为undefined;否则为错误对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
292 293 294 295 296 297 298 299
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
300
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
301 302 303

**示例:**

M
m00512953 已提交
304
```ts
C
chenyuyan 已提交
305 306
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
307
try {
M
mingxihua 已提交
308
  let formId = '12400633174999288';
Y
yangzk 已提交
309
  formHost.requestForm(formId, (error) => {
Y
yanwenhao 已提交
310
    if (error) {
M
mingxihua 已提交
311
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
312 313 314
    }
  });
} catch(error) {
M
mingxihua 已提交
315
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
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
}
```

## requestForm

requestForm(formId: string): Promise<void>

请求卡片更新。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise<void> | 无返回结果的Promise对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
345 346 347 348 349 350 351 352
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
353
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
354 355 356

**示例:**

M
m00512953 已提交
357
```ts
C
chenyuyan 已提交
358 359
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
360
try {
M
mingxihua 已提交
361
  let formId = '12400633174999288';
Y
yanwenhao 已提交
362 363 364
  formHost.requestForm(formId).then(() => {
    console.log('formHost requestForm success');
  }).catch((error) => {
M
mingxihua 已提交
365
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
366 367
  });
} catch(error) {
M
mingxihua 已提交
368
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
369 370 371 372
}

```

D
fix  
donglin 已提交
373
## castToNormalForm
Y
yanwenhao 已提交
374

D
fix  
donglin 已提交
375
castToNormalForm(formId: string, callback: AsyncCallback<void>): void
Y
yanwenhao 已提交
376 377 378 379 380 381 382 383 384 385 386 387

将指定的临时卡片转换为普通卡片。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |
Y
yangzk 已提交
388
| callback | AsyncCallback<void> | 是 | 回调函数。当将指定的临时卡片转换为普通卡片成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
389 390 391 392 393

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
394 395 396 397 398 399 400 401
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501002 | The number of forms exceeds upper bound. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
402
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
403 404 405

**示例:**

M
m00512953 已提交
406
```ts
C
chenyuyan 已提交
407 408
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
409
try {
M
mingxihua 已提交
410
  let formId = '12400633174999288';
Y
yangzk 已提交
411
  formHost.castToNormalForm(formId, (error) => {
Y
yanwenhao 已提交
412
    if (error) {
M
mingxihua 已提交
413
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
414 415 416
    }
  });
} catch(error) {
M
mingxihua 已提交
417
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
418 419 420
}
```

D
fix  
donglin 已提交
421
## castToNormalForm
Y
yanwenhao 已提交
422

D
fix  
donglin 已提交
423
castToNormalForm(formId: string): Promise<void>
Y
yanwenhao 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446

将指定的临时卡片转换为普通卡片。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise<void> | 无返回结果的Promise对象。|

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
447 448 449 450 451 452 453 454
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501002 | The number of forms exceeds upper bound. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
455
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
456 457 458

**示例:**

M
m00512953 已提交
459
```ts
C
chenyuyan 已提交
460 461
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
462
try {
M
mingxihua 已提交
463
  let formId = '12400633174999288';
D
fix  
donglin 已提交
464
  formHost.castToNormalForm(formId).then(() => {
Y
yanwenhao 已提交
465 466
    console.log('formHost castTempForm success');
  }).catch((error) => {
M
mingxihua 已提交
467
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
468 469
  });
} catch(error) {
M
mingxihua 已提交
470
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
}
```

## notifyVisibleForms

notifyVisibleForms(formIds: Array<string>, callback: AsyncCallback<void>): void

向卡片框架发送通知以使指定的卡片可见。该方法调用成功后,会调用onVisibilityChange通知卡片提供方。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds  | Array<string>       | 是   | 卡片标识列表。         |
Y
yangzk 已提交
489
| callback | AsyncCallback<void> | 是 | 回调函数。当向卡片框架发送通知以使指定的卡片可见成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
490 491 492 493 494

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
495 496 497 498 499 500
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
501
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
502 503 504

**示例:**

M
m00512953 已提交
505
```ts
C
chenyuyan 已提交
506 507
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
508
try {
M
mingxihua 已提交
509
  let formId = ['12400633174999288'];
Y
yangzk 已提交
510
  formHost.notifyVisibleForms(formId, (error) => {
Y
yanwenhao 已提交
511
    if (error) {
M
mingxihua 已提交
512
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
513 514 515
    }
  });
} catch(error) {
M
mingxihua 已提交
516
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
}
```

## notifyVisibleForms

notifyVisibleForms(formIds: Array<string>): Promise<void>

向卡片框架发送通知以使指定的卡片可见。该方法调用成功后,会调用onVisibilityChange通知卡片提供方。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array<string> | 是   | 卡片标识列表。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise<void> | 无返回结果的Promise对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
546 547 548 549 550 551
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
552
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
553 554 555

**示例:**

M
m00512953 已提交
556
```ts
C
chenyuyan 已提交
557 558
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
559
try {
M
mingxihua 已提交
560
  let formId = ['12400633174999288'];
Y
yanwenhao 已提交
561 562 563
  formHost.notifyVisibleForms(formId).then(() => {
    console.log('formHost notifyVisibleForms success');
  }).catch((error) => {
M
mingxihua 已提交
564
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
565 566
  });
} catch(error) {
M
mingxihua 已提交
567
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
}
```

## notifyInvisibleForms

notifyInvisibleForms(formIds: Array<string>, callback: AsyncCallback<void>): void

向卡片框架发送通知以使指定的卡片不可见。该方法调用成功后,会调用onVisibilityChange通知卡片提供方。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds  | Array<string>       | 是   | 卡片标识列表。|
Y
yangzk 已提交
586
| callback | AsyncCallback<void> | 是 | 回调函数。当向卡片框架发送通知以使指定的卡片不可见成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
587 588 589 590 591

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
592 593 594 595 596 597
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
598
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
599 600 601

**示例:**

M
m00512953 已提交
602
```ts
C
chenyuyan 已提交
603 604
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
605
try {
M
mingxihua 已提交
606
  let formId = ['12400633174999288'];
Y
yangzk 已提交
607
  formHost.notifyInvisibleForms(formId, (error) => {
Y
yanwenhao 已提交
608
    if (error) {
M
mingxihua 已提交
609
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
610 611 612
    }
  });
} catch(error) {
M
mingxihua 已提交
613
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
}
```

## notifyInvisibleForms

notifyInvisibleForms(formIds: Array<string>): Promise<void>

向卡片框架发送通知以使指定的卡片不可见。该方法调用成功后,会调用onVisibilityChange通知卡片提供方。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array<string> | 是   | 卡片标识列表。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise<void> | 无返回结果的Promise对象。|

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
643 644 645 646 647 648
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
649
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
650 651 652

**示例:**

M
m00512953 已提交
653
```ts
C
chenyuyan 已提交
654 655
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
656
try {
M
mingxihua 已提交
657
  let formId = ['12400633174999288'];
Y
yanwenhao 已提交
658 659 660
  formHost.notifyInvisibleForms(formId).then(() => {
    console.log('formHost notifyInvisibleForms success');
  }).catch((error) => {
M
mingxihua 已提交
661
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
662 663
  });
} catch(error) {
M
mingxihua 已提交
664
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
}
```

## enableFormsUpdate

enableFormsUpdate(formIds: Array<string>, callback: AsyncCallback<void>): void

向卡片框架发送通知以使指定的卡片可以更新。该方法调用成功后,卡片刷新状态设置为使能,卡片可以接收来自卡片提供方的更新。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds  | Array<string>       | 是   | 卡片标识列表。         |
Y
yangzk 已提交
683
| callback | AsyncCallback<void> | 是 | 回调函数。当向卡片框架发送通知以使指定的卡片可以更新成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
684 685 686 687 688

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
689 690 691 692 693 694 695
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
696
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
697 698 699

**示例:**

M
m00512953 已提交
700
```ts
C
chenyuyan 已提交
701 702
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
703
try {
M
mingxihua 已提交
704
  let formId = ['12400633174999288'];
Y
yangzk 已提交
705
  formHost.enableFormsUpdate(formId, (error) => {
Y
yanwenhao 已提交
706
    if (error) {
M
mingxihua 已提交
707
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
708 709 710
    }
  });
} catch(error) {
M
mingxihua 已提交
711
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
}
```

## enableFormsUpdate

enableFormsUpdate(formIds: Array<string>): Promise<void>

向卡片框架发送通知以使指定的卡片可以更新。该方法调用成功后,卡片刷新状态设置为使能,卡片可以接收来自卡片提供方的更新。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array<string> | 是   | 卡片标识列表。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise<void> | 无返回结果的Promise对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
741 742 743 744 745 746 747
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
748
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
749 750 751

**示例:**

M
m00512953 已提交
752
```ts
C
chenyuyan 已提交
753 754
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
755
try {
M
mingxihua 已提交
756
  let formId = ['12400633174999288'];
Y
yanwenhao 已提交
757 758 759
  formHost.enableFormsUpdate(formId).then(() => {
    console.log('formHost enableFormsUpdate success');
  }).catch((error) => {
M
mingxihua 已提交
760
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
761 762
  });
} catch(error) {
M
mingxihua 已提交
763
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
}
```

## disableFormsUpdate

disableFormsUpdate(formIds: Array<string>, callback: AsyncCallback<void>): void

向卡片框架发送通知以使指定的卡片不可以更新。该方法调用成功后,卡片刷新状态设置为去使能,卡片不可以接收来自卡片提供方的更新。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds  | Array<string>       | 是   | 卡片标识列表。         |
Y
yangzk 已提交
782
| callback | AsyncCallback<void> | 是 | 回调函数。当向卡片框架发送通知以使指定的卡片不可以更新成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
783 784 785 786 787

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
788 789 790 791 792 793 794 795
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
796
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
797 798 799

**示例:**

M
m00512953 已提交
800
```ts
C
chenyuyan 已提交
801 802
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
803
try {
M
mingxihua 已提交
804
  let formId = ['12400633174999288'];
Y
yangzk 已提交
805
  formHost.disableFormsUpdate(formId, (error) => {
Y
yanwenhao 已提交
806
    if (error) {
M
mingxihua 已提交
807
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
808 809 810
    }
  });
} catch(error) {
M
mingxihua 已提交
811
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840
}
```

## disableFormsUpdate

disableFormsUpdate(formIds: Array<string>): Promise<void>

向卡片框架发送通知以使指定的卡片不可以更新。该方法调用成功后,卡片刷新状态设置为去使能,卡片不可以接收来自卡片提供方的更新。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array<string> | 是   | 卡片标识列表。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise<void> | 无返回结果的Promise对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
841 842 843 844 845 846 847 848
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
849
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
850 851 852

**示例:**

M
m00512953 已提交
853
```ts
C
chenyuyan 已提交
854 855
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
856
try {
M
mingxihua 已提交
857
  let formId = ['12400633174999288'];
Y
yanwenhao 已提交
858 859 860
  formHost.disableFormsUpdate(formId).then(() => {
    console.log('formHost disableFormsUpdate success');
  }).catch((error) => {
M
mingxihua 已提交
861
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
862 863
  });
} catch(error) {
M
mingxihua 已提交
864
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
}
```

## isSystemReady

isSystemReady(callback: AsyncCallback<void>): void

检查系统是否准备好。使用callback异步回调。

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
Y
yangzk 已提交
880
| callback | AsyncCallback<void> | 是 | 回调函数。当检查系统是否准备好成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
881

882 883 884 885 886 887 888 889
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 202 | The application is not a system application.   |
| 401 | If the input parameter is not valid parameter. |
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||

Y
yanwenhao 已提交
890 891
**示例:**

M
m00512953 已提交
892
```ts
C
chenyuyan 已提交
893 894
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
895 896 897
try {
  formHost.isSystemReady((error, data) => {
    if (error) {
M
mingxihua 已提交
898
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
899 900 901
    }
  });
} catch(error) {
M
mingxihua 已提交
902
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919
}
```

## isSystemReady

isSystemReady(): Promise<void>

检查系统是否准备好。使用Promise异步回调。

**系统能力**:SystemCapability.Ability.Form

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise<void> | 无返回结果的Promise对象。 |

920 921 922 923 924 925 926
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 202 | The application is not a system application.   |
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||

Y
yanwenhao 已提交
927 928
**示例:**

M
m00512953 已提交
929
```ts
C
chenyuyan 已提交
930 931
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
932 933 934 935
try {
  formHost.isSystemReady().then(() => {
    console.log('formHost isSystemReady success');
  }).catch((error) => {
M
mingxihua 已提交
936
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
937 938
  });
} catch(error) {
M
mingxihua 已提交
939
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
940 941 942 943 944 945 946 947 948 949 950 951 952
}
```

## getAllFormsInfo

getAllFormsInfo(callback: AsyncCallback<Array<formInfo.FormInfo>>): void

获取设备上所有应用提供的卡片信息。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

953 954 955 956 957 958 959 960 961 962 963 964
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||

Y
yanwenhao 已提交
965 966 967 968
**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
Y
yangzk 已提交
969
| callback | AsyncCallback<Array<[formInfo.FormInfo](js-apis-app-form-formInfo.md)>> | 是 | 回调函数。当获取设备上所有应用提供的卡片信息成功,error为undefined,data为查询到的卡片信息;否则为错误对象。 |
Y
yanwenhao 已提交
970 971 972

**示例:**

M
m00512953 已提交
973
```ts
C
chenyuyan 已提交
974 975
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
976 977 978
try {
  formHost.getAllFormsInfo((error, data) => {
    if (error) {
M
mingxihua 已提交
979
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
980
    } else {
M
mingxihua 已提交
981
      console.log('formHost getAllFormsInfo, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
982 983 984
    }
  });
} catch(error) {
M
mingxihua 已提交
985
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
986 987 988 989 990 991 992 993 994 995 996 997 998
}
```

## getAllFormsInfo

getAllFormsInfo(): Promise<Array<formInfo.FormInfo>>

获取设备上所有应用提供的卡片信息。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||

Y
yanwenhao 已提交
1010 1011
**返回值:**

Y
yangzk 已提交
1012 1013 1014
| 类型                                                         | 说明                                |
| :----------------------------------------------------------- | :---------------------------------- |
| Promise<Array<[formInfo.FormInfo](js-apis-app-form-formInfo.md)>> | Promise对象,返回查询到的卡片信息。 |
Y
yanwenhao 已提交
1015 1016 1017

**示例:**

M
m00512953 已提交
1018
```ts
C
chenyuyan 已提交
1019 1020
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1021 1022
try {
  formHost.getAllFormsInfo().then((data) => {
M
mingxihua 已提交
1023
    console.log('formHost getAllFormsInfo data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1024
  }).catch((error) => {
M
mingxihua 已提交
1025
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1026 1027
  });
} catch(error) {
M
mingxihua 已提交
1028
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
}
```

## getFormsInfo

getFormsInfo(bundleName: string, callback: AsyncCallback<Array<formInfo.FormInfo>>): void

获取设备上指定应用程序提供的卡片信息。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
1046
| bundleName | string | 是 | 要查询的应用Bundle名称。 |
Y
yangzk 已提交
1047
| callback | AsyncCallback<Array<[formInfo.FormInfo](js-apis-app-form-formInfo.md)>> | 是 | 回调函数。当获取设备上指定应用程序提供的卡片信息成功,error为undefined,data为查询到的卡片信息;否则为错误对象。 |
Y
yanwenhao 已提交
1048 1049 1050 1051 1052

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1053 1054 1055 1056 1057 1058 1059
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16500100 | Failed to obtain the configuration information. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
1060
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1061 1062 1063

**示例:**

M
m00512953 已提交
1064
```ts
C
chenyuyan 已提交
1065 1066
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1067
try {
M
mingxihua 已提交
1068
  formHost.getFormsInfo('com.example.ohos.formjsdemo', (error, data) => {
Y
yanwenhao 已提交
1069
    if (error) {
M
mingxihua 已提交
1070
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1071
    } else {
M
mingxihua 已提交
1072
      console.log('formHost getFormsInfo, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1073 1074 1075
    }
  });
} catch(error) {
M
mingxihua 已提交
1076
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
}
```

## getFormsInfo

getFormsInfo(bundleName: string, moduleName: string, callback: AsyncCallback<Array<formInfo.FormInfo>>): void

获取设备上指定应用程序提供的卡片信息。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
1094
| bundleName | string | 是 | 要查询的应用Bundle名称。 |
Y
yanwenhao 已提交
1095
| moduleName | string | 是 |  要查询的模块名称。 |
Y
yangzk 已提交
1096
| callback | AsyncCallback<Array<[formInfo.FormInfo](js-apis-app-form-formInfo.md)>> | 是 | 回调函数。当获取设备上指定应用程序提供的卡片信息成功,error为undefined,data为查询到的卡片信息;否则为错误对象。 |
Y
yanwenhao 已提交
1097 1098 1099 1100 1101

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1102 1103 1104 1105 1106 1107 1108
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16500100 | Failed to obtain the configuration information. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
1109
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1110 1111 1112

**示例:**

M
m00512953 已提交
1113
```ts
C
chenyuyan 已提交
1114 1115
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1116
try {
M
mingxihua 已提交
1117
  formHost.getFormsInfo('com.example.ohos.formjsdemo', 'entry', (error, data) => {
Y
yanwenhao 已提交
1118
    if (error) {
M
mingxihua 已提交
1119
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1120
    } else {
M
mingxihua 已提交
1121
      console.log('formHost getFormsInfo, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1122 1123 1124
    }
  });
} catch(error) {
M
mingxihua 已提交
1125
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
}
```

## getFormsInfo

getFormsInfo(bundleName: string, moduleName?: string): Promise<Array<formInfo.FormInfo>>

获取设备上指定应用程序提供的卡片信息。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
1143
| bundleName | string | 是 | 要查询的应用Bundle名称。 |
W
form  
wangkailong 已提交
1144
| moduleName | string | 否 |  要查询的模块名称,缺省默认为空。 |
Y
yanwenhao 已提交
1145 1146 1147

**返回值:**

Y
yangzk 已提交
1148 1149 1150
| 类型                                                         | 说明                                |
| :----------------------------------------------------------- | :---------------------------------- |
| Promise<Array<[formInfo.FormInfo](js-apis-app-form-formInfo.md)>> | Promise对象,返回查询到的卡片信息。 |
Y
yanwenhao 已提交
1151 1152 1153 1154 1155

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1156 1157 1158 1159 1160 1161 1162
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16500100 | Failed to obtain the configuration information. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
1163
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1164 1165 1166

**示例:**

M
m00512953 已提交
1167
```ts
C
chenyuyan 已提交
1168 1169
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1170
try {
M
mingxihua 已提交
1171
  formHost.getFormsInfo('com.example.ohos.formjsdemo', 'entry').then((data) => {
M
mingxihua 已提交
1172
    console.log('formHost getFormsInfo, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1173
  }).catch((error) => {
M
mingxihua 已提交
1174
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1175 1176
  });
} catch(error) {
M
mingxihua 已提交
1177
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195
}
```

## deleteInvalidForms

deleteInvalidForms(formIds: Array<string>, callback: AsyncCallback<number>): void

根据列表删除应用程序的无效卡片。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array<string> | 是   | 有效卡片标识列表。 |
Y
yangzk 已提交
1196
| callback | AsyncCallback<number> | 是 | 回调函数。当根据列表删除应用程序的无效卡片成功,error为undefined,data为删除的卡片个数;否则为错误对象。 |
Y
yanwenhao 已提交
1197

1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||

Y
yanwenhao 已提交
1210 1211
**示例:**

M
m00512953 已提交
1212
```ts
C
chenyuyan 已提交
1213 1214
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1215
try {
M
mingxihua 已提交
1216
  let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1217 1218
  formHost.deleteInvalidForms(formIds, (error, data) => {
    if (error) {
M
mingxihua 已提交
1219
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1220
    } else {
M
mingxihua 已提交
1221
      console.log('formHost deleteInvalidForms, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1222 1223 1224
    }
  });
} catch(error) {
M
mingxihua 已提交
1225
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
}
```

## deleteInvalidForms

deleteInvalidForms(formIds: Array<string>): Promise<number>

根据列表删除应用程序的无效卡片。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array<string> | 是   | 有效卡片标识列表。 |

**返回值:**

| 类型          | 说明                                |
| :------------ | :---------------------------------- |
| Promise<number> | Promise对象,返回删除的卡片个数。 |

1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||

Y
yanwenhao 已提交
1263 1264
**示例:**

M
m00512953 已提交
1265
```ts
C
chenyuyan 已提交
1266 1267
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1268
try {
M
mingxihua 已提交
1269
  let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1270
  formHost.deleteInvalidForms(formIds).then((data) => {
M
mingxihua 已提交
1271
    console.log('formHost deleteInvalidForms, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1272
  }).catch((error) => {
M
mingxihua 已提交
1273
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1274 1275
  });
} catch(error) {
M
mingxihua 已提交
1276
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
}
```

## acquireFormState

acquireFormState(want: Want, callback: AsyncCallback<formInfo.FormStateInfo>): void

获取卡片状态。使用callback异步回调。

**需要权限**:ohos.permission.REQUIRE_FORM 和 ohos.permission.GET_BUNDLE_INFO_PRIVILEGED

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
Y
yangzk 已提交
1294 1295
| want | [Want](js-apis-application-want.md) | 是   | 查询卡片状态时携带的want信息。需要包含bundle名、ability名、module名、卡片名、卡片规格等。 |
| callback | AsyncCallback<[formInfo.FormStateInfo](js-apis-app-form-formInfo.md#formstateinfo)> | 是 | 回调函数。当获取卡片状态成功,error为undefined,data为获取到的卡片状态;否则为错误对象。 |
Y
yanwenhao 已提交
1296 1297 1298 1299 1300

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1301 1302 1303 1304 1305 1306 1307
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16500100 | Failed to obtain the configuration information. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
1308
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1309 1310 1311

**示例:**

M
m00512953 已提交
1312
```ts
C
chenyuyan 已提交
1313 1314 1315
import formHost from '@ohos.app.form.formHost';

let want = {
M
mingxihua 已提交
1316 1317 1318 1319 1320 1321 1322
  'deviceId': '',
  'bundleName': 'ohos.samples.FormApplication',
  'abilityName': 'FormAbility',
  'parameters': {
    'ohos.extra.param.key.module_name': 'entry',
    'ohos.extra.param.key.form_name': 'widget',
    'ohos.extra.param.key.form_dimension': 2
Y
yanwenhao 已提交
1323 1324 1325 1326 1327
  }
};
try {
  formHost.acquireFormState(want, (error, data) => {
    if (error) {
M
mingxihua 已提交
1328
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1329
    } else {
M
mingxihua 已提交
1330
      console.log('formHost acquireFormState, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1331 1332 1333
    }
  });
} catch(error) {
M
mingxihua 已提交
1334
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351
}
```

## acquireFormState

acquireFormState(want: Want): Promise<formInfo.FormStateInfo>

获取卡片状态。使用Promise异步回调。

**需要权限**:ohos.permission.REQUIRE_FORM 和 ohos.permission.GET_BUNDLE_INFO_PRIVILEGED

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
Y
yangzk 已提交
1352
| want   | [Want](js-apis-application-want.md) | 是   | 查询卡片状态时携带的want信息。需要包含bundle名、ability名、module名、卡片名、卡片规格等。 |
Y
yanwenhao 已提交
1353 1354 1355 1356 1357

**返回值:**

| 类型          | 说明                                |
| :------------ | :---------------------------------- |
Y
yangzk 已提交
1358
| Promise<[formInfo.FormStateInfo](js-apis-app-form-formInfo.md#formstateinfo)> | Promise对象,返回卡片状态。 |
Y
yanwenhao 已提交
1359 1360 1361 1362 1363

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1364 1365 1366 1367 1368 1369 1370
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16500100 | Failed to obtain the configuration information. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
1371
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1372 1373 1374

**示例:**

M
m00512953 已提交
1375
```ts
C
chenyuyan 已提交
1376 1377 1378
import formHost from '@ohos.app.form.formHost';

let want = {
M
mingxihua 已提交
1379 1380 1381 1382 1383 1384 1385
  'deviceId': '',
  'bundleName': 'ohos.samples.FormApplication',
  'abilityName': 'FormAbility',
  'parameters': {
    'ohos.extra.param.key.module_name': 'entry',
    'ohos.extra.param.key.form_name': 'widget',
    'ohos.extra.param.key.form_dimension': 2
Y
yanwenhao 已提交
1386 1387 1388 1389
  }
};
try {
  formHost.acquireFormState(want).then((data) => {
M
mingxihua 已提交
1390
    console.log('formHost acquireFormState, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1391
  }).catch((error) => {
M
mingxihua 已提交
1392
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1393 1394
  });
} catch(error) {
M
mingxihua 已提交
1395
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1396 1397 1398
}
```

M
mingxihua 已提交
1399
## on('formUninstall')
Y
yanwenhao 已提交
1400

M
mingxihua 已提交
1401
on(type: 'formUninstall', callback: Callback<string>): void
Y
yanwenhao 已提交
1402 1403 1404 1405 1406 1407 1408 1409 1410

订阅卡片卸载事件。使用callback异步回调。

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
M
mingxihua 已提交
1411
| type | string | 是   | 填写'formUninstall',表示卡片卸载事件。 |
Y
yanwenhao 已提交
1412 1413
| callback | Callback<string> | 是 | 回调函数。返回卡片标识。 |

1414 1415 1416 1417 1418 1419 1420 1421
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||

Y
yanwenhao 已提交
1422 1423
**示例:**

M
m00512953 已提交
1424
```ts
C
chenyuyan 已提交
1425 1426
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1427
let callback = function(formId) {
M
mingxihua 已提交
1428
  console.log('formHost on formUninstall, formId: ${formId}');
Y
yanwenhao 已提交
1429
}
M
mingxihua 已提交
1430
formHost.on('formUninstall', callback);
Y
yanwenhao 已提交
1431 1432
```

M
mingxihua 已提交
1433
## off('formUninstall')
Y
yanwenhao 已提交
1434

M
mingxihua 已提交
1435
off(type: 'formUninstall', callback?: Callback<string>): void
Y
yanwenhao 已提交
1436 1437 1438 1439 1440 1441 1442 1443 1444

取消订阅卡片卸载事件。使用callback异步回调。

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
M
mingxihua 已提交
1445 1446
| type | string | 是   | 填写'formUninstall',表示卡片卸载事件。 |
| callback | Callback&lt;string&gt; | 否 | 回调函数。返回卡片标识。缺省时,表示注销所有已注册事件回调。<br> 需与对应on('formUninstall')的callback一致。|
Y
yanwenhao 已提交
1447

1448 1449 1450 1451 1452 1453 1454 1455
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||

Y
yanwenhao 已提交
1456 1457
**示例:**

M
m00512953 已提交
1458
```ts
C
chenyuyan 已提交
1459 1460
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1461
let callback = function(formId) {
M
mingxihua 已提交
1462
  console.log('formHost on formUninstall, formId: ${formId}');
Y
yanwenhao 已提交
1463
}
M
mingxihua 已提交
1464
formHost.off('formUninstall', callback);
Y
yanwenhao 已提交
1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
```

## notifyFormsVisible

notifyFormsVisible(formIds: Array&lt;string&gt;, isVisible: boolean, callback: AsyncCallback&lt;void&gt;): void

通知卡片是否可见。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array&lt;string&gt; | 是   | 卡片标识列表。 |
| isVisible | boolean | 是   | 是否可见。 |
Y
yangzk 已提交
1483
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。当通知卡片是否可见成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
1484 1485 1486 1487 1488

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1489 1490 1491 1492 1493 1494 1495
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
1496
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1497 1498 1499

**示例:**

M
m00512953 已提交
1500
```ts
C
chenyuyan 已提交
1501 1502
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1503
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1504
try {
Y
yangzk 已提交
1505
  formHost.notifyFormsVisible(formIds, true, (error) => {
Y
yanwenhao 已提交
1506
    if (error) {
M
mingxihua 已提交
1507
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1508 1509 1510
    }
  });
} catch(error) {
M
mingxihua 已提交
1511
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
}
```

## notifyFormsVisible

notifyFormsVisible(formIds: Array&lt;string&gt;, isVisible: boolean): Promise&lt;void&gt;

通知卡片是否可见。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array&lt;string&gt; | 是   | 卡片标识列表。 |
| isVisible | boolean | 是   | 是否可见。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1542 1543 1544 1545 1546 1547 1548
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
1549
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1550 1551 1552

**示例:**

M
m00512953 已提交
1553
```ts
C
chenyuyan 已提交
1554 1555
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1556
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1557 1558 1559 1560
try {
  formHost.notifyFormsVisible(formIds, true).then(() => {
    console.log('formHost notifyFormsVisible success');
  }).catch((error) => {
M
mingxihua 已提交
1561
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1562 1563
  });
} catch(error) {
M
mingxihua 已提交
1564
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583
}
```

## notifyFormsEnableUpdate

notifyFormsEnableUpdate(formIds: Array&lt;string&gt;, isEnableUpdate: boolean, callback: AsyncCallback&lt;void&gt;): void

通知卡片是否启用更新状态。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array&lt;string&gt; | 是   | 卡片标识列表。 |
| isEnableUpdate | boolean | 是   | 是否使能更新。 |
Y
yangzk 已提交
1584
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。当通知卡片是否启用更新状态成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
1585 1586 1587 1588 1589

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1590 1591 1592 1593 1594 1595 1596
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
1597
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1598 1599 1600

**示例:**

M
m00512953 已提交
1601
```ts
C
chenyuyan 已提交
1602 1603
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1604
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1605
try {
Y
yangzk 已提交
1606
  formHost.notifyFormsEnableUpdate(formIds, true, (error) => {
Y
yanwenhao 已提交
1607
    if (error) {
M
mingxihua 已提交
1608
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1609 1610 1611
    }
  });
} catch(error) {
M
mingxihua 已提交
1612
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642
}
```

## notifyFormsEnableUpdate

notifyFormsEnableUpdate(formIds: Array&lt;string&gt;, isEnableUpdate: boolean): Promise&lt;void&gt;

通知卡片是否启用更新状态。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array&lt;string&gt; | 是   | 卡片标识列表。 |
| isEnableUpdate | boolean | 是   | 是否使能更新。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1643 1644 1645 1646 1647 1648 1649
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
1650
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1651 1652 1653

**示例:**

M
m00512953 已提交
1654
```ts
C
chenyuyan 已提交
1655 1656
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1657
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1658 1659 1660 1661
try {
  formHost.notifyFormsEnableUpdate(formIds, true).then(() => {
    console.log('formHost notifyFormsEnableUpdate success');
  }).catch((error) => {
M
mingxihua 已提交
1662
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1663 1664
  });
} catch(error) {
M
mingxihua 已提交
1665
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1666 1667 1668 1669 1670 1671 1672 1673
}
```
## shareForm

shareForm(formId: string, deviceId: string, callback: AsyncCallback&lt;void&gt;): void

指定formId和远程设备Id进行卡片分享。使用callback异步回调。

D
fix  
donglin 已提交
1674
**需要权限**:ohos.permission.REQUIRE_FORM 和 ohos.permission.DISTRIBUTED_DATASYNC
Y
yanwenhao 已提交
1675 1676 1677 1678 1679 1680 1681 1682 1683

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |
| deviceId | string | 是   | 远程设备标识。 |
Y
yangzk 已提交
1684
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。当指定formId和远程设备Id进行卡片分享成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
1685 1686 1687 1688 1689

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1690 1691 1692 1693 1694 1695 1696
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
1697
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1698 1699 1700

**示例:**

M
m00512953 已提交
1701
```ts
C
chenyuyan 已提交
1702 1703
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1704 1705
let formId = '12400633174999288';
let deviceId = 'EFC11C0C53628D8CC2F8CB5052477E130D075917034613B9884C55CD22B3DEF2';
Y
yanwenhao 已提交
1706
try {
Y
yangzk 已提交
1707
  formHost.shareForm(formId, deviceId, (error) => {
Y
yanwenhao 已提交
1708
    if (error) {
M
mingxihua 已提交
1709
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1710 1711 1712
    }
  });
} catch(error) {
M
mingxihua 已提交
1713
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1714 1715 1716 1717 1718 1719 1720 1721 1722
}
```

## shareForm

shareForm(formId: string, deviceId: string): Promise&lt;void&gt;

指定formId和远程设备Id进行卡片分享。使用Promise异步回调。

D
fix  
donglin 已提交
1723
**需要权限**:ohos.permission.REQUIRE_FORM 和 ohos.permission.DISTRIBUTED_DATASYNC
Y
yanwenhao 已提交
1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |
| deviceId | string | 是   | 远程设备标识。 |

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1744 1745 1746 1747 1748 1749 1750
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16501000 | An internal functional error occurred. |
| 16501001 | The ID of the form to be operated does not exist. |
| 16501003 | The form can not be operated by the current application. |
Y
yangzk 已提交
1751
|以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。||
Y
yanwenhao 已提交
1752

Y
yangzk 已提交
1753
**示例:**
Y
yanwenhao 已提交
1754

M
m00512953 已提交
1755
```ts
C
chenyuyan 已提交
1756 1757
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1758 1759
let formId = '12400633174999288';
let deviceId = 'EFC11C0C53628D8CC2F8CB5052477E130D075917034613B9884C55CD22B3DEF2';
Y
yanwenhao 已提交
1760 1761 1762 1763
try {
  formHost.shareForm(formId, deviceId).then(() => {
    console.log('formHost shareForm success');
  }).catch((error) => {
M
mingxihua 已提交
1764
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1765 1766
  });
} catch(error) {
M
mingxihua 已提交
1767
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1768 1769 1770 1771 1772
}
```

## notifyFormsPrivacyProtected

D
fix  
donglin 已提交
1773
notifyFormsPrivacyProtected(formIds: Array\<string>, isProtected: boolean, callback: AsyncCallback\<void>): void
Y
yanwenhao 已提交
1774

Y
yangzk 已提交
1775 1776
通知指定卡片隐私保护状态改变。使用callback异步回调。

Y
yanwenhao 已提交
1777 1778 1779 1780 1781 1782 1783 1784
**需要权限**:ohos.permission.REQUIRE_FORM

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
Y
yangzk 已提交
1785 1786 1787 1788 1789 1790
| formIds | Array\<string\> | 是   | 需要修改隐私保护的卡片标识列表。 |
| isProtected | boolean | 是   | 是否进行隐私保护。 |
| callback | AsyncCallback\<void> | 是 | 回调函数。当指定卡片设置隐私保护属性成功,error为undefined,否则为错误对象。 |

**错误码:**

1791 1792 1793 1794 1795 1796 1797 1798
| 错误码ID | 错误信息 |
| -------- | -------- |
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
1799 1800 1801
| 以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。 |                    |

**示例:**
Y
yanwenhao 已提交
1802

M
m00512953 已提交
1803
```ts
C
chenyuyan 已提交
1804 1805
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1806
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yangzk 已提交
1807 1808 1809
try {
  formHost.notifyFormsPrivacyProtected(formIds, true, (error) => {
    if (error) {
M
mingxihua 已提交
1810
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yangzk 已提交
1811 1812 1813
    }
  });
} catch(error) {
M
mingxihua 已提交
1814
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yangzk 已提交
1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842
}
```

## notifyFormsPrivacyProtected

function notifyFormsPrivacyProtected(formIds: Array\<string\>, isProtected: boolean): Promise\<void\>;

通知指定卡片隐私保护状态改变。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名      | 类型            | 必填 | 说明                             |
| ----------- | --------------- | ---- | -------------------------------- |
| formIds     | Array\<string\> | 是   | 需要修改隐私保护的卡片标识列表。 |
| isProtected | boolean         | 是   | 是否进行隐私保护。               |

**返回值:**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**错误码:**

1843 1844 1845 1846 1847 1848 1849 1850
| 错误码ID | 错误信息 |
| -------- | -------- |
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16500060 | A service connection error happened, please try again later. |
| 16501000 | An internal functional error occurred. |
Y
yangzk 已提交
1851 1852 1853
| 以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。 |                    |

```ts
C
chenyuyan 已提交
1854 1855
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1856
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1857 1858
try {
  formHost.notifyFormsPrivacyProtected(formIds, true).then(() => {
Y
yangzk 已提交
1859
    console.log('formHost notifyFormsPrivacyProtected success');
Y
yanwenhao 已提交
1860
  }).catch((error) => {
M
mingxihua 已提交
1861
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1862 1863
  });
} catch(error) {
M
mingxihua 已提交
1864
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1865 1866
}
```
Y
yangzk 已提交
1867

X
xinking129 已提交
1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061
## getRunningFormInfosByFilter

function getRunningFormInfosByFilter(formProviderFilter: formInfo.formProviderFilter): Promise&lt;Array&lt;formInfo.RunningFormInfo&gt;&gt;

根据提供方信息查询卡片已有的使用方列表信息。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名      | 类型            | 必填 | 说明                             |
| ----------- | --------------- | ---- | -------------------------------- |
| formProviderFilter     | formInfo.formProviderFilter | 是   | 卡片提供方应用信息。 |

**返回值:**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;Array&lt;formInfo.RunningFormInfo&gt;&gt; | Promise对象,返回查询到的使用方列表信息。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16501000  | An internal functional error occurred. |
| 以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。 |                    |

```ts
import formHost from '@ohos.app.form.formHost';

let formInstanceFilter = {
  bundleName: "com.example.formprovide",
  abilityName: "EntryFormAbility",
  formName: "widget",
  moduleName: "entry"
}
try {
  formHost.getRunningFormInfosByFilter(formInstanceFilter).then(data1 => {
    console.info('formHost getRunningFormInfosByFilter return err :');
  }).catch((error) => {
    console.error(`error, code: ${error.code}, message: ${error.message}`);
  });
} catch(error) {
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
}
```

## getRunningFormInfosByFilter

function getRunningFormInfosByFilter(formProviderFilter: formInfo.formProviderFilter, callback: AsyncCallback&lt;Array&lt;formInfo.FormInfo&gt;&gt;): void

根据提供方信息查询卡片已有的使用方列表信息。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名      | 类型            | 必填 | 说明                             |
| ----------- | --------------- | ---- | -------------------------------- |
| formProviderFilter     | formInfo.formProviderFilter | 是   | 卡片提供方应用信息。 |
| callback | AsyncCallback&lt;Array&lt;[formInfo.RunningFormInfo](js-apis-app-form-formInfo.md)&gt;&gt; | 是 | 回调函数。返回查询到的使用方列表信息,error为undefined,data为查询到的使用方列表信息;否则为错误对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16501000  | An internal functional error occurred. |
| 以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。 |                    |

```ts
import formHost from '@ohos.app.form.formHost';

let formInstanceFilter = {
  bundleName: "com.example.formprovide",
  abilityName: "EntryFormAbility",
  formName: "widget",
  moduleName: "entry"
}
try {
  formHost.getRunningFormInfosByFilter(formInstanceFilter,(error, data) => {
    if (error) {
      console.error(`error, code: ${error.code}, message: ${error.message}`);
    } else {
      console.log('formHost getRunningFormInfosByFilter, data: ${JSON.stringify(data)}');
    }
  });
} catch(error) {
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
}
```

## getRunningFormInfoById

function getRunningFormInfoById(formId: string): Promise&lt;Array&lt;formInfo.RunningFormInfo&gt;&gt;

根据formId查询卡片已有的使用方列表信息。使用Promise异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名      | 类型            | 必填 | 说明                             |
| ----------- | --------------- | ---- | -------------------------------- |
| formId     | string | 是   | 卡片标识。 |

**返回值:**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;Array&lt;formInfo.RunningFormInfo&gt;&gt; | Promise对象,返回查询到的使用方列表信息。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16501000  | An internal functional error occurred. |
| 以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。 |                    |

```ts
import formHost from '@ohos.app.form.formHost';
let formId = '12400633174999288';
try {
  formHost.getRunningFormInfoById(formId).then(data1 => {
    console.info('formHost getRunningFormInfoById return err :');
  }).catch((error) => {
    console.error(`error, code: ${error.code}, message: ${error.message}`);
  });
} catch(error) {
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
}
```

## getRunningFormInfoById

function getRunningFormInfoById(formId: string, callback: AsyncCallback&lt;Array&lt;formInfo.FormInfo&gt;&gt;): void

根据提供方信息查询卡片已有的使用方列表信息。使用callback异步回调。

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

**系统能力**:SystemCapability.Ability.Form

**参数:**

| 参数名      | 类型            | 必填 | 说明                             |
| ----------- | --------------- | ---- | -------------------------------- |
| formId     | string | 是   | 卡片标识。 |
| callback | AsyncCallback&lt;Array&lt;[formInfo.RunningFormInfo](js-apis-app-form-formInfo.md)&gt;&gt; | 是 | 回调函数。返回查询到的使用方列表信息,error为undefined,data为查询到的使用方列表信息;否则为错误对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 201 | Permissions denied. |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
| 16500050 | An IPC connection error happened. |
| 16501000  | An internal functional error occurred. |
| 以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)。 |                    |

```ts
import formHost from '@ohos.app.form.formHost';

let formId = '12400633174999288';
try {
  formHost.getRunningFormInfoById(formId,(error, data) => {
    if (error) {
      console.error(`error, code: ${error.code}, message: ${error.message}`);
    } else {
      console.log('formHost getRunningFormInfoById, data: ${JSON.stringify(data)}');
    }
  });
} catch(error) {
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
}
```