js-apis-app-form-formHost.md 42.8 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.app.form.formHost (FormHost)
Y
yanwenhao 已提交
2

Y
yanwenhao 已提交
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
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
38
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
39 40 41

**示例:**

M
m00512953 已提交
42
```ts
Y
yanwenhao 已提交
43
try {
M
mingxihua 已提交
44
  var formId = '12400633174999288';
Y
yanwenhao 已提交
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
  formHost.deleteForm(formId, (error, data) => {
  if (error) {
    console.log('formHost deleteForm, error:' + JSON.stringify(error));
  } else {
    console.log('formHost deleteForm success');
  }
  });
} catch (error) {
  console.log(`catch err->${JSON.stringify(error)}`);
}

```

## deleteForm

deleteForm(formId: string): Promise<void>

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

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

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

**参数:**

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

**返回值:**

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


**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
85
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
86
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
87 88 89

**参数:**

M
m00512953 已提交
90
```ts
Y
yanwenhao 已提交
91
try {
M
mingxihua 已提交
92
  var formId = '12400633174999288';
Y
yanwenhao 已提交
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
  formHost.deleteForm(formId).then(() => {
    console.log('formHost deleteForm success');
  }).catch((error) => {
    console.log('formHost deleteForm, error:' + JSON.stringify(error));
  });
} catch(error) {
  console.log(`catch err->${JSON.stringify(error)}`);
}
```

## releaseForm

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
124
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
125
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
126 127 128

**示例:**

M
m00512953 已提交
129
```ts
Y
yanwenhao 已提交
130
try {
M
mingxihua 已提交
131
  var formId = '12400633174999288';
Y
yanwenhao 已提交
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
  formHost.releaseForm(formId, (error, data) => {
    if (error) {
      console.log('formHost releaseForm, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## 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 | 错误信息 |
| -------- | -------- |
164
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
165
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
166 167 168

**示例:**

M
m00512953 已提交
169
```ts
Y
yanwenhao 已提交
170
try {
M
mingxihua 已提交
171
  var formId = '12400633174999288';
Y
yanwenhao 已提交
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
  formHost.releaseForm(formId, true, (error, data) => {
    if (error) {
      console.log('formHost releaseForm, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## releaseForm

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

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

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

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

**参数:**

| 参数名         | 类型     | 必填 | 说明        |
| -------------- | ------  | ---- | ----------- |
| formId         | string  | 是   | 卡片标识。     |
| isReleaseCache | boolean | 否   | 是否释放缓存。 |

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
209
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
210
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
211 212 213

**示例:**

M
m00512953 已提交
214
```ts
Y
yanwenhao 已提交
215
try {
M
mingxihua 已提交
216
  var formId = '12400633174999288';
Y
yanwenhao 已提交
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
  formHost.releaseForm(formId, true).then(() => {
    console.log('formHost releaseForm success');
  }).catch((error) => {
    console.log('formHost releaseForm, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## requestForm

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
248
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
249
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
250 251 252

**示例:**

M
m00512953 已提交
253
```ts
Y
yanwenhao 已提交
254
try {
M
mingxihua 已提交
255
  var formId = '12400633174999288';
Y
yanwenhao 已提交
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
  formHost.requestForm(formId, (error, data) => {
    if (error) {
      console.log('formHost requestForm, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## requestForm

requestForm(formId: string): Promise<void>

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
292
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
293
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
294 295 296

**示例:**

M
m00512953 已提交
297
```ts
Y
yanwenhao 已提交
298
try {
M
mingxihua 已提交
299
  var formId = '12400633174999288';
Y
yanwenhao 已提交
300 301 302 303 304 305 306 307 308 309 310
  formHost.requestForm(formId).then(() => {
    console.log('formHost requestForm success');
  }).catch((error) => {
    console.log('formHost requestForm, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}

```

D
fix  
donglin 已提交
311
## castToNormalForm
Y
yanwenhao 已提交
312

D
fix  
donglin 已提交
313
castToNormalForm(formId: string, callback: AsyncCallback<void>): void
Y
yanwenhao 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331

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

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

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

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |
| callback | AsyncCallback<void> | 是 | 回调函数。当将指定的临时卡片转换为普通卡片成功,err为undefined,否则为错误对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
332
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
333
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
334 335 336

**示例:**

M
m00512953 已提交
337
```ts
Y
yanwenhao 已提交
338
try {
M
mingxihua 已提交
339
  var formId = '12400633174999288';
D
fix  
donglin 已提交
340
  formHost.castToNormalForm(formId, (error, data) => {
Y
yanwenhao 已提交
341 342 343 344 345 346 347 348 349
    if (error) {
      console.log('formHost castTempForm, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

D
fix  
donglin 已提交
350
## castToNormalForm
Y
yanwenhao 已提交
351

D
fix  
donglin 已提交
352
castToNormalForm(formId: string): Promise<void>
Y
yanwenhao 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
376
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
377
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
378 379 380

**示例:**

M
m00512953 已提交
381
```ts
Y
yanwenhao 已提交
382
try {
M
mingxihua 已提交
383
  var formId = '12400633174999288';
D
fix  
donglin 已提交
384
  formHost.castToNormalForm(formId).then(() => {
Y
yanwenhao 已提交
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
    console.log('formHost castTempForm success');
  }).catch((error) => {
    console.log('formHost castTempForm, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## notifyVisibleForms

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
415
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
416
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
417 418 419

**示例:**

M
m00512953 已提交
420
```ts
Y
yanwenhao 已提交
421
try {
M
mingxihua 已提交
422
  var formId = ['12400633174999288'];
Y
yanwenhao 已提交
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
  formHost.notifyVisibleForms(formId, (error, data) => {
    if (error) {
      console.log('formHost notifyVisibleForms, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## notifyVisibleForms

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

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
459
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
460
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
461 462 463

**示例:**

M
m00512953 已提交
464
```ts
Y
yanwenhao 已提交
465
try {
M
mingxihua 已提交
466
  var formId = ['12400633174999288'];
Y
yanwenhao 已提交
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
  formHost.notifyVisibleForms(formId).then(() => {
    console.log('formHost notifyVisibleForms success');
  }).catch((error) => {
    console.log('formHost notifyVisibleForms, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## notifyInvisibleForms

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
498
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
499
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
500 501 502

**示例:**

M
m00512953 已提交
503
```ts
Y
yanwenhao 已提交
504
try {
M
mingxihua 已提交
505
  var formId = ['12400633174999288'];
Y
yanwenhao 已提交
506 507 508 509 510 511 512 513 514 515 516 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
  formHost.notifyInvisibleForms(formId, (error, data) => {
    if (error) {
      console.log('formHost notifyInvisibleForms, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## notifyInvisibleForms

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

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
542
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
543
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
544 545 546

**示例:**

M
m00512953 已提交
547
```ts
Y
yanwenhao 已提交
548
try {
M
mingxihua 已提交
549
  var formId = ['12400633174999288'];
Y
yanwenhao 已提交
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
  formHost.notifyInvisibleForms(formId).then(() => {
    console.log('formHost notifyInvisibleForms success');
  }).catch((error) => {
    console.log('formHost notifyInvisibleForms, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## enableFormsUpdate

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
581
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
582
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
583 584 585

**示例:**

M
m00512953 已提交
586
```ts
Y
yanwenhao 已提交
587
try {
M
mingxihua 已提交
588
  var formId = ['12400633174999288'];
Y
yanwenhao 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
  formHost.enableFormsUpdate(formId, (error, data) => {
    if (error) {
      console.log('formHost enableFormsUpdate, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## enableFormsUpdate

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

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
625
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
626
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
627 628 629

**示例:**

M
m00512953 已提交
630
```ts
Y
yanwenhao 已提交
631
try {
M
mingxihua 已提交
632
  var formId = ['12400633174999288'];
Y
yanwenhao 已提交
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
  formHost.enableFormsUpdate(formId).then(() => {
    console.log('formHost enableFormsUpdate success');
  }).catch((error) => {
    console.log('formHost enableFormsUpdate, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## disableFormsUpdate

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
664
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
665
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
666 667 668

**示例:**

M
m00512953 已提交
669
```ts
Y
yanwenhao 已提交
670
try {
M
mingxihua 已提交
671
  var formId = ['12400633174999288'];
Y
yanwenhao 已提交
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
  formHost.disableFormsUpdate(formId, (error, data) => {
    if (error) {
      console.log('formHost disableFormsUpdate, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## disableFormsUpdate

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

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
708
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
709
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
710 711 712

**示例:**

M
m00512953 已提交
713
```ts
Y
yanwenhao 已提交
714
try {
M
mingxihua 已提交
715
  var formId = ['12400633174999288'];
Y
yanwenhao 已提交
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 741
  formHost.disableFormsUpdate(formId).then(() => {
    console.log('formHost disableFormsUpdate success');
  }).catch((error) => {
    console.log('formHost disableFormsUpdate, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## isSystemReady

isSystemReady(callback: AsyncCallback<void>): void

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

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

**参数:**

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

**示例:**

M
m00512953 已提交
742
```ts
Y
yanwenhao 已提交
743
try {
M
mingxihua 已提交
744
  var formId = '12400633174999288';
Y
yanwenhao 已提交
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
  formHost.isSystemReady((error, data) => {
    if (error) {
      console.log('formHost isSystemReady, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## isSystemReady

isSystemReady(): Promise<void>

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

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

**返回值:**

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

**示例:**

M
m00512953 已提交
771
```ts
Y
yanwenhao 已提交
772
try {
M
mingxihua 已提交
773
  var formId = '12400633174999288';
Y
yanwenhao 已提交
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
  formHost.isSystemReady().then(() => {
    console.log('formHost isSystemReady success');
  }).catch((error) => {
    console.log('formHost isSystemReady, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## getAllFormsInfo

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

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

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

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

**参数:**

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

**示例:**

M
m00512953 已提交
802
```ts
Y
yanwenhao 已提交
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
try {
  formHost.getAllFormsInfo((error, data) => {
    if (error) {
      console.log('formHost getAllFormsInfo, error:' + JSON.stringify(error));
    } else {
      console.log('formHost getAllFormsInfo, data:' + JSON.stringify(data));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## getAllFormsInfo

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

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

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

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

**返回值:**

| 类型          | 说明                                |
| :------------ | :---------------------------------- |
830
| Promise<Array<[FormInfo](js-apis-app-form-formInfo.md)>> | Promise对象,返回查询到的卡片信息。 |
Y
yanwenhao 已提交
831 832 833

**示例:**

M
m00512953 已提交
834
```ts
Y
yanwenhao 已提交
835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
try {
  formHost.getAllFormsInfo().then((data) => {
      console.log('formHost getAllFormsInfo data:' + JSON.stringify(data));
  }).catch((error) => {
      console.log('formHost getAllFormsInfo, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## getFormsInfo

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
867
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
868
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
869 870 871

**示例:**

M
m00512953 已提交
872
```ts
Y
yanwenhao 已提交
873
try {
M
mingxihua 已提交
874
  formHost.getFormsInfo('com.example.ohos.formjsdemo', (error, data) => {
Y
yanwenhao 已提交
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901
    if (error) {
      console.log('formHost getFormsInfo, error:' + JSON.stringify(error));
    } else {
      console.log('formHost getFormsInfo, data:' + JSON.stringify(data));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## getFormsInfo

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
908
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
909
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
910 911 912

**示例:**

M
m00512953 已提交
913
```ts
Y
yanwenhao 已提交
914
try {
M
mingxihua 已提交
915
  formHost.getFormsInfo('com.example.ohos.formjsdemo', 'entry', (error, data) => {
Y
yanwenhao 已提交
916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
    if (error) {
        console.log('formHost getFormsInfo, error:' + JSON.stringify(error));
    } else {
        console.log('formHost getFormsInfo, data:' + JSON.stringify(data));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## getFormsInfo

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

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

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

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

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| bundleName | string | 是 |  要查询的应用程序包名称。 |
| moduleName | string | 否 |  要查询的模块名称。 |

**返回值:**

| 类型          | 说明                                |
| :------------ | :---------------------------------- |
948
| Promise<Array<[FormInfo](js-apis-app-form-formInfo.md)>> | Promise对象,返回查询到的卡片信息。 |
Y
yanwenhao 已提交
949 950 951 952 953

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
954
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
955
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
956 957 958

**示例:**

M
m00512953 已提交
959
```ts
Y
yanwenhao 已提交
960
try {
M
mingxihua 已提交
961
  formHost.getFormsInfo('com.example.ohos.formjsdemo', 'entry').then((data) => {
Y
yanwenhao 已提交
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
    console.log('formHost getFormsInfo, data:' + JSON.stringify(data));
  }).catch((error) => {
    console.log('formHost getFormsInfo, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## deleteInvalidForms

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

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

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

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

**参数:**

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

**示例:**

M
m00512953 已提交
990
```ts
Y
yanwenhao 已提交
991
try {
M
mingxihua 已提交
992
  var formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
  formHost.deleteInvalidForms(formIds, (error, data) => {
    if (error) {
      console.log('formHost deleteInvalidForms, error:' + JSON.stringify(error));
    } else {
      console.log('formHost deleteInvalidForms, data:' + JSON.stringify(data));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## deleteInvalidForms

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

M
m00512953 已提交
1029
```ts
Y
yanwenhao 已提交
1030
try {
M
mingxihua 已提交
1031
  var formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
  formHost.deleteInvalidForms(formIds).then((data) => {
    console.log('formHost deleteInvalidForms, data:' + JSON.stringify(data));
  }).catch((error) => {
    console.log('formHost deleteInvalidForms, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## acquireFormState

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

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

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

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

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
M
m00512953 已提交
1056
| want | [Want](js-apis-application-want.md) | 是   | 查询卡片状态时携带的want信息。 |
1057
| callback | AsyncCallback<[FormStateInfo](js-apis-app-form-formInfo.md#formstateinfo)> | 是 | 回调函数。当获取卡片状态成功,err为undefined,data为获取到的卡片状态;否则为错误对象。 |
Y
yanwenhao 已提交
1058 1059 1060 1061 1062

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1063
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
1064
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1065 1066 1067

**示例:**

M
m00512953 已提交
1068
```ts
Y
yanwenhao 已提交
1069
var want = {
M
mingxihua 已提交
1070 1071 1072 1073 1074 1075 1076
  '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 已提交
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
  }
};
try {
  formHost.acquireFormState(want, (error, data) => {
    if (error) {
      console.log('formHost acquireFormState, error:' + JSON.stringify(error));
    } else {
      console.log('formHost acquireFormState, data:' + JSON.stringify(data));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## acquireFormState

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

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

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

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

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
M
m00512953 已提交
1106
| want   | [Want](js-apis-application-want.md) | 是   | 查询卡片状态时携带的want信息。 |
Y
yanwenhao 已提交
1107 1108 1109 1110 1111

**返回值:**

| 类型          | 说明                                |
| :------------ | :---------------------------------- |
1112
| Promise<[FormStateInfo](js-apis-app-form-formInfo.md#formstateinfo)> | Promise对象,返回卡片状态。 |
Y
yanwenhao 已提交
1113 1114 1115 1116 1117

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1118
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
1119
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1120 1121 1122

**示例:**

M
m00512953 已提交
1123
```ts
Y
yanwenhao 已提交
1124
var want = {
M
mingxihua 已提交
1125 1126 1127 1128 1129 1130 1131
  '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 已提交
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
  }
};
try {
  formHost.acquireFormState(want).then((data) => {
    console.log('formHost acquireFormState, data:' + JSON.stringify(data));
  }).catch((error) => {
    console.log('formHost acquireFormState, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

M
mingxihua 已提交
1145
## on('formUninstall')
Y
yanwenhao 已提交
1146

M
mingxihua 已提交
1147
on(type: 'formUninstall', callback: Callback<string>): void
Y
yanwenhao 已提交
1148 1149 1150 1151 1152 1153 1154 1155 1156

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

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

**参数:**

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

**示例:**

M
m00512953 已提交
1162
```ts
Y
yanwenhao 已提交
1163 1164 1165
let callback = function(formId) {
  console.log('formHost on formUninstall, formId:' + formId);
}
M
mingxihua 已提交
1166
formHost.on('formUninstall', callback);
Y
yanwenhao 已提交
1167 1168
```

M
mingxihua 已提交
1169
## off('formUninstall')
Y
yanwenhao 已提交
1170

M
mingxihua 已提交
1171
off(type: 'formUninstall', callback?: Callback<string>): void
Y
yanwenhao 已提交
1172 1173 1174 1175 1176 1177 1178 1179 1180

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

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

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
M
mingxihua 已提交
1181
| type | string | 是   | 填写'formUninstall',表示卡片卸载事件。 |
Y
yanwenhao 已提交
1182 1183 1184 1185
| callback | Callback<string> | 否 | 回调函数。返回卡片标识。缺省时,表示注销所有已注册事件回调。 |

**示例:**

M
m00512953 已提交
1186
```ts
Y
yanwenhao 已提交
1187 1188 1189
let callback = function(formId) {
  console.log('formHost on formUninstall, formId:' + formId);
}
M
mingxihua 已提交
1190
formHost.off('formUninstall', callback);
Y
yanwenhao 已提交
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
```

## notifyFormsVisible

notifyFormsVisible(formIds: Array<string>, isVisible: boolean, callback: AsyncCallback<void>): void

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

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

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

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array<string> | 是   | 卡片标识列表。 |
| isVisible | boolean | 是   | 是否可见。 |
| callback | AsyncCallback<void> | 是 | 回调函数。当通知卡片是否可见成功,err为undefined,否则为错误对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1215
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
1216
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1217 1218 1219

**示例:**

M
m00512953 已提交
1220
```ts
M
mingxihua 已提交
1221
var formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1222 1223 1224 1225 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 1251 1252 1253 1254 1255 1256 1257 1258 1259
try {
  formHost.notifyFormsVisible(formIds, true, (error, data) => {
    if (error) {
      console.log('formHost notifyFormsVisible, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## notifyFormsVisible

notifyFormsVisible(formIds: Array<string>, isVisible: boolean): Promise<void>

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1260
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
1261
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1262 1263 1264

**示例:**

M
m00512953 已提交
1265
```ts
M
mingxihua 已提交
1266
var formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
try {
  formHost.notifyFormsVisible(formIds, true).then(() => {
    console.log('formHost notifyFormsVisible success');
  }).catch((error) => {
    console.log('formHost notifyFormsVisible, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## notifyFormsEnableUpdate

notifyFormsEnableUpdate(formIds: Array<string>, isEnableUpdate: boolean, callback: AsyncCallback<void>): void

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

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

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

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formIds | Array<string> | 是   | 卡片标识列表。 |
| isEnableUpdate | boolean | 是   | 是否使能更新。 |
| callback | AsyncCallback<void> | 是 | 回调函数。当通知卡片是否启用更新状态成功,err为undefined,否则为错误对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1300
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
1301
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1302 1303 1304

**示例:**

M
m00512953 已提交
1305
```ts
M
mingxihua 已提交
1306
var formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
try {
  formHost.notifyFormsEnableUpdate(formIds, true, (error, data) => {
    if (error) {
      console.log('formHost notifyFormsEnableUpdate, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## notifyFormsEnableUpdate

notifyFormsEnableUpdate(formIds: Array<string>, isEnableUpdate: boolean): Promise<void>

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1345
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
1346
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1347 1348 1349

**示例:**

M
m00512953 已提交
1350
```ts
M
mingxihua 已提交
1351
var formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
try {
  formHost.notifyFormsEnableUpdate(formIds, true).then(() => {
    console.log('formHost notifyFormsEnableUpdate success');
  }).catch((error) => {
    console.log('formHost notifyFormsEnableUpdate, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```
## shareForm

shareForm(formId: string, deviceId: string, callback: AsyncCallback<void>): void

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

D
fix  
donglin 已提交
1368
**需要权限**:ohos.permission.REQUIRE_FORM 和 ohos.permission.DISTRIBUTED_DATASYNC
Y
yanwenhao 已提交
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383

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

**参数:**

| 参数名 | 类型    | 必填 | 说明    |
| ------ | ------ | ---- | ------- |
| formId | string | 是   | 卡片标识。 |
| deviceId | string | 是   | 远程设备标识。 |
| callback | AsyncCallback<void> | 是 | 回调函数。当指定formId和远程设备Id进行卡片分享成功,err为undefined,否则为错误对象。 |

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1384
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
1385
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1386 1387 1388 1389


**示例:**

M
m00512953 已提交
1390
```ts
M
mingxihua 已提交
1391 1392
var formId = '12400633174999288';
var deviceId = 'EFC11C0C53628D8CC2F8CB5052477E130D075917034613B9884C55CD22B3DEF2';
Y
yanwenhao 已提交
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
try {
  formHost.shareForm(formId, deviceId, (error, data) => {
    if (error) {
      console.log('formHost shareForm, error:' + JSON.stringify(error));
    }
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## shareForm

shareForm(formId: string, deviceId: string): Promise<void>

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

D
fix  
donglin 已提交
1410
**需要权限**:ohos.permission.REQUIRE_FORM 和 ohos.permission.DISTRIBUTED_DATASYNC
Y
yanwenhao 已提交
1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1431
| 401 | If the input parameter is not valid parameter. |
D
merge  
donglin 已提交
1432
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1433 1434 1435

**参数:**

M
m00512953 已提交
1436
```ts
M
mingxihua 已提交
1437 1438
var formId = '12400633174999288';
var deviceId = 'EFC11C0C53628D8CC2F8CB5052477E130D075917034613B9884C55CD22B3DEF2';
Y
yanwenhao 已提交
1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
try {
  formHost.shareForm(formId, deviceId).then(() => {
    console.log('formHost shareForm success');
  }).catch((error) => {
    console.log('formHost shareForm, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```

## notifyFormsPrivacyProtected

D
fix  
donglin 已提交
1452
notifyFormsPrivacyProtected(formIds: Array\<string>, isProtected: boolean, callback: AsyncCallback\<void>): void
Y
yanwenhao 已提交
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464

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

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

**参数:**

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

M
m00512953 已提交
1465
```ts
M
mingxihua 已提交
1466
var formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
try {
  formHost.notifyFormsPrivacyProtected(formIds, true).then(() => {
    console.log('formHost shareForm success');
  }).catch((error) => {
    console.log('formHost shareForm, error:' + JSON.stringify(error));
  });
} catch(error) {
    console.log(`catch err->${JSON.stringify(error)}`);
}
```