js-apis-app-form-formHost.md 63.6 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
| 201 | Permissions denied. |
38
| 202 | The application is not a system application. |
39 40 41 42 43 44
| 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. |
45 46

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
47 48 49

**示例:**

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

Y
yanwenhao 已提交
53
try {
M
mingxihua 已提交
54
  let formId = '12400633174999288';
Y
yangzk 已提交
55
  formHost.deleteForm(formId, (error) => {
Y
yanwenhao 已提交
56
  if (error) {
M
mingxihua 已提交
57
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
58 59 60 61 62
  } else {
    console.log('formHost deleteForm success');
  }
  });
} catch (error) {
M
mingxihua 已提交
63
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
}
```

## deleteForm

deleteForm(formId: string): Promise<void>

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

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

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

**参数:**

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

**返回值:**

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


**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
94 95 96 97 98 99 100 101
| 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. |
102 103

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
104 105 106

**参数:**

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

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

## releaseForm

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
143 144 145 146 147 148 149 150
| 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. |
151 152

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
153 154 155

**示例:**

M
m00512953 已提交
156
```ts
C
chenyuyan 已提交
157 158
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
159
try {
M
mingxihua 已提交
160
  let formId = '12400633174999288';
Y
yangzk 已提交
161
  formHost.releaseForm(formId, (error) => {
Y
yanwenhao 已提交
162
    if (error) {
M
mingxihua 已提交
163
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
164 165 166
    }
  });
} catch(error) {
M
mingxihua 已提交
167
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
}
```

## 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 | 错误信息 |
| -------- | -------- |
193 194 195 196 197 198 199 200
| 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. |
201 202

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
203 204 205

**示例:**

M
m00512953 已提交
206
```ts
C
chenyuyan 已提交
207 208
import formHost from '@ohos.app.form.formHost';

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

## releaseForm

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

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
248 249 250 251 252 253 254 255
| 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. |
256 257

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
258 259 260

**示例:**

M
m00512953 已提交
261
```ts
C
chenyuyan 已提交
262 263
import formHost from '@ohos.app.form.formHost';

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

## requestForm

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
297 298 299 300 301 302 303 304
| 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. |
305 306

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
307 308 309

**示例:**

M
m00512953 已提交
310
```ts
C
chenyuyan 已提交
311 312
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
313
try {
M
mingxihua 已提交
314
  let formId = '12400633174999288';
Y
yangzk 已提交
315
  formHost.requestForm(formId, (error) => {
Y
yanwenhao 已提交
316
    if (error) {
M
mingxihua 已提交
317
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
318 319 320
    }
  });
} catch(error) {
M
mingxihua 已提交
321
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
}
```

## requestForm

requestForm(formId: string): Promise<void>

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
351 352 353 354 355 356 357 358
| 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. |
359 360

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
361 362 363

**示例:**

M
m00512953 已提交
364
```ts
C
chenyuyan 已提交
365 366
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
367
try {
M
mingxihua 已提交
368
  let formId = '12400633174999288';
Y
yanwenhao 已提交
369 370 371
  formHost.requestForm(formId).then(() => {
    console.log('formHost requestForm success');
  }).catch((error) => {
M
mingxihua 已提交
372
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
373 374
  });
} catch(error) {
M
mingxihua 已提交
375
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
376 377 378 379
}

```

D
fix  
donglin 已提交
380
## castToNormalForm
Y
yanwenhao 已提交
381

D
fix  
donglin 已提交
382
castToNormalForm(formId: string, callback: AsyncCallback<void>): void
Y
yanwenhao 已提交
383 384 385 386 387 388 389 390 391 392 393 394

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
401 402 403 404 405 406 407 408
| 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. |
409 410

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
411 412 413

**示例:**

M
m00512953 已提交
414
```ts
C
chenyuyan 已提交
415 416
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
417
try {
M
mingxihua 已提交
418
  let formId = '12400633174999288';
Y
yangzk 已提交
419
  formHost.castToNormalForm(formId, (error) => {
Y
yanwenhao 已提交
420
    if (error) {
M
mingxihua 已提交
421
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
422 423 424
    }
  });
} catch(error) {
M
mingxihua 已提交
425
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
426 427 428
}
```

D
fix  
donglin 已提交
429
## castToNormalForm
Y
yanwenhao 已提交
430

D
fix  
donglin 已提交
431
castToNormalForm(formId: string): Promise<void>
Y
yanwenhao 已提交
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
455 456 457 458 459 460 461 462
| 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. |
463 464

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
465 466 467

**示例:**

M
m00512953 已提交
468
```ts
C
chenyuyan 已提交
469 470
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
471
try {
M
mingxihua 已提交
472
  let formId = '12400633174999288';
D
fix  
donglin 已提交
473
  formHost.castToNormalForm(formId).then(() => {
Y
yanwenhao 已提交
474 475
    console.log('formHost castTempForm success');
  }).catch((error) => {
M
mingxihua 已提交
476
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
477 478
  });
} catch(error) {
M
mingxihua 已提交
479
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
}
```

## notifyVisibleForms

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
504 505 506 507 508 509
| 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. |
510 511

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
512 513 514

**示例:**

M
m00512953 已提交
515
```ts
C
chenyuyan 已提交
516 517
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
518
try {
M
mingxihua 已提交
519
  let formId = ['12400633174999288'];
Y
yangzk 已提交
520
  formHost.notifyVisibleForms(formId, (error) => {
Y
yanwenhao 已提交
521
    if (error) {
M
mingxihua 已提交
522
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
523 524 525
    }
  });
} catch(error) {
M
mingxihua 已提交
526
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
}
```

## notifyVisibleForms

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

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
556 557 558 559 560 561
| 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. |
562 563

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
564 565 566

**示例:**

M
m00512953 已提交
567
```ts
C
chenyuyan 已提交
568 569
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
570
try {
M
mingxihua 已提交
571
  let formId = ['12400633174999288'];
Y
yanwenhao 已提交
572 573 574
  formHost.notifyVisibleForms(formId).then(() => {
    console.log('formHost notifyVisibleForms success');
  }).catch((error) => {
M
mingxihua 已提交
575
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
576 577
  });
} catch(error) {
M
mingxihua 已提交
578
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
}
```

## notifyInvisibleForms

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
603 604 605 606 607 608
| 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. |
609 610

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
611 612 613

**示例:**

M
m00512953 已提交
614
```ts
C
chenyuyan 已提交
615 616
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
617
try {
M
mingxihua 已提交
618
  let formId = ['12400633174999288'];
Y
yangzk 已提交
619
  formHost.notifyInvisibleForms(formId, (error) => {
Y
yanwenhao 已提交
620
    if (error) {
M
mingxihua 已提交
621
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
622 623 624
    }
  });
} catch(error) {
M
mingxihua 已提交
625
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
}
```

## notifyInvisibleForms

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

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
655 656 657 658 659 660
| 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. |
661 662

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
663 664 665

**示例:**

M
m00512953 已提交
666
```ts
C
chenyuyan 已提交
667 668
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
669
try {
M
mingxihua 已提交
670
  let formId = ['12400633174999288'];
Y
yanwenhao 已提交
671 672 673
  formHost.notifyInvisibleForms(formId).then(() => {
    console.log('formHost notifyInvisibleForms success');
  }).catch((error) => {
M
mingxihua 已提交
674
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
675 676
  });
} catch(error) {
M
mingxihua 已提交
677
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
}
```

## enableFormsUpdate

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
702 703 704 705 706 707 708
| 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. |
709 710

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
711 712 713

**示例:**

M
m00512953 已提交
714
```ts
C
chenyuyan 已提交
715 716
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
717
try {
M
mingxihua 已提交
718
  let formId = ['12400633174999288'];
Y
yangzk 已提交
719
  formHost.enableFormsUpdate(formId, (error) => {
Y
yanwenhao 已提交
720
    if (error) {
M
mingxihua 已提交
721
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
722 723 724
    }
  });
} catch(error) {
M
mingxihua 已提交
725
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754
}
```

## enableFormsUpdate

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

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
755 756 757 758 759 760 761
| 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. |
762 763

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
764 765 766

**示例:**

M
m00512953 已提交
767
```ts
C
chenyuyan 已提交
768 769
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
770
try {
M
mingxihua 已提交
771
  let formId = ['12400633174999288'];
Y
yanwenhao 已提交
772 773 774
  formHost.enableFormsUpdate(formId).then(() => {
    console.log('formHost enableFormsUpdate success');
  }).catch((error) => {
M
mingxihua 已提交
775
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
776 777
  });
} catch(error) {
M
mingxihua 已提交
778
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796
}
```

## disableFormsUpdate

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
803 804 805 806 807 808 809 810
| 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. |
811 812

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
813 814 815

**示例:**

M
m00512953 已提交
816
```ts
C
chenyuyan 已提交
817 818
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
819
try {
M
mingxihua 已提交
820
  let formId = ['12400633174999288'];
Y
yangzk 已提交
821
  formHost.disableFormsUpdate(formId, (error) => {
Y
yanwenhao 已提交
822
    if (error) {
M
mingxihua 已提交
823
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
824 825 826
    }
  });
} catch(error) {
M
mingxihua 已提交
827
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
}
```

## disableFormsUpdate

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

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
857 858 859 860 861 862 863 864
| 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. |
865 866

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
867 868 869

**示例:**

M
m00512953 已提交
870
```ts
C
chenyuyan 已提交
871 872
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
873
try {
M
mingxihua 已提交
874
  let formId = ['12400633174999288'];
Y
yanwenhao 已提交
875 876 877
  formHost.disableFormsUpdate(formId).then(() => {
    console.log('formHost disableFormsUpdate success');
  }).catch((error) => {
M
mingxihua 已提交
878
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
879 880
  });
} catch(error) {
M
mingxihua 已提交
881
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
}
```

## isSystemReady

isSystemReady(callback: AsyncCallback<void>): void

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

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

**参数:**

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

899 900 901 902 903 904
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 202 | The application is not a system application.   |
| 401 | If the input parameter is not valid parameter. |
905 906

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
907

Y
yanwenhao 已提交
908 909
**示例:**

M
m00512953 已提交
910
```ts
C
chenyuyan 已提交
911 912
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
913 914 915
try {
  formHost.isSystemReady((error, data) => {
    if (error) {
M
mingxihua 已提交
916
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
917 918 919
    }
  });
} catch(error) {
M
mingxihua 已提交
920
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937
}
```

## isSystemReady

isSystemReady(): Promise<void>

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

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

**返回值:**

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

938 939 940 941 942
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 202 | The application is not a system application.   |
943 944

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
945

Y
yanwenhao 已提交
946 947
**示例:**

M
m00512953 已提交
948
```ts
C
chenyuyan 已提交
949 950
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
951 952 953 954
try {
  formHost.isSystemReady().then(() => {
    console.log('formHost isSystemReady success');
  }).catch((error) => {
M
mingxihua 已提交
955
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
956 957
  });
} catch(error) {
M
mingxihua 已提交
958
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
959 960 961 962 963 964 965 966 967 968 969 970 971
}
```

## getAllFormsInfo

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

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

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

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

972 973 974 975 976 977 978 979 980 981
**错误码:**

| 错误码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. |
982 983

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
984

Y
yanwenhao 已提交
985 986 987 988
**参数:**

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

**示例:**

M
m00512953 已提交
993
```ts
C
chenyuyan 已提交
994 995
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
996 997 998
try {
  formHost.getAllFormsInfo((error, data) => {
    if (error) {
M
mingxihua 已提交
999
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1000
    } else {
M
mingxihua 已提交
1001
      console.log('formHost getAllFormsInfo, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1002 1003 1004
    }
  });
} catch(error) {
M
mingxihua 已提交
1005
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
}
```

## getAllFormsInfo

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

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

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

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

1019 1020 1021 1022 1023 1024 1025 1026 1027
**错误码:**

| 错误码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. |
1028 1029

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
1030

Y
yanwenhao 已提交
1031 1032
**返回值:**

Y
yangzk 已提交
1033 1034 1035
| 类型                                                         | 说明                                |
| :----------------------------------------------------------- | :---------------------------------- |
| Promise<Array<[formInfo.FormInfo](js-apis-app-form-formInfo.md)>> | Promise对象,返回查询到的卡片信息。 |
Y
yanwenhao 已提交
1036 1037 1038

**示例:**

M
m00512953 已提交
1039
```ts
C
chenyuyan 已提交
1040 1041
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1042 1043
try {
  formHost.getAllFormsInfo().then((data) => {
M
mingxihua 已提交
1044
    console.log('formHost getAllFormsInfo data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1045
  }).catch((error) => {
M
mingxihua 已提交
1046
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1047 1048
  });
} catch(error) {
M
mingxihua 已提交
1049
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
}
```

## getFormsInfo

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1074 1075 1076 1077 1078 1079 1080
| 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. |
1081 1082

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1083 1084 1085

**示例:**

M
m00512953 已提交
1086
```ts
C
chenyuyan 已提交
1087 1088
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1089
try {
M
mingxihua 已提交
1090
  formHost.getFormsInfo('com.example.ohos.formjsdemo', (error, data) => {
Y
yanwenhao 已提交
1091
    if (error) {
M
mingxihua 已提交
1092
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1093
    } else {
M
mingxihua 已提交
1094
      console.log('formHost getFormsInfo, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1095 1096 1097
    }
  });
} catch(error) {
M
mingxihua 已提交
1098
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
}
```

## getFormsInfo

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

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

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1124 1125 1126 1127 1128 1129 1130
| 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. |
1131 1132

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1133 1134 1135

**示例:**

M
m00512953 已提交
1136
```ts
C
chenyuyan 已提交
1137 1138
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1139
try {
M
mingxihua 已提交
1140
  formHost.getFormsInfo('com.example.ohos.formjsdemo', 'entry', (error, data) => {
Y
yanwenhao 已提交
1141
    if (error) {
M
mingxihua 已提交
1142
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1143
    } else {
M
mingxihua 已提交
1144
      console.log('formHost getFormsInfo, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1145 1146 1147
    }
  });
} catch(error) {
M
mingxihua 已提交
1148
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
}
```

## getFormsInfo

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

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

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

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

**参数:**

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

**返回值:**

Y
yangzk 已提交
1171 1172 1173
| 类型                                                         | 说明                                |
| :----------------------------------------------------------- | :---------------------------------- |
| Promise<Array<[formInfo.FormInfo](js-apis-app-form-formInfo.md)>> | Promise对象,返回查询到的卡片信息。 |
Y
yanwenhao 已提交
1174 1175 1176 1177 1178

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1179 1180 1181 1182 1183 1184 1185
| 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. |
1186 1187

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1188 1189 1190

**示例:**

M
m00512953 已提交
1191
```ts
C
chenyuyan 已提交
1192 1193
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1194
try {
M
mingxihua 已提交
1195
  formHost.getFormsInfo('com.example.ohos.formjsdemo', 'entry').then((data) => {
M
mingxihua 已提交
1196
    console.log('formHost getFormsInfo, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1197
  }).catch((error) => {
M
mingxihua 已提交
1198
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1199 1200
  });
} catch(error) {
M
mingxihua 已提交
1201
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
}
```

## deleteInvalidForms

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

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

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

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

**参数:**

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

1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
**错误码:**

| 错误码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. |
1232 1233

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
1234

Y
yanwenhao 已提交
1235 1236
**示例:**

M
m00512953 已提交
1237
```ts
C
chenyuyan 已提交
1238 1239
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1240
try {
M
mingxihua 已提交
1241
  let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1242 1243
  formHost.deleteInvalidForms(formIds, (error, data) => {
    if (error) {
M
mingxihua 已提交
1244
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1245
    } else {
M
mingxihua 已提交
1246
      console.log('formHost deleteInvalidForms, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1247 1248 1249
    }
  });
} catch(error) {
M
mingxihua 已提交
1250
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275
}
```

## deleteInvalidForms

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

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

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

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

**参数:**

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

**返回值:**

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

1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
**错误码:**

| 错误码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. |
1286 1287

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
1288

Y
yanwenhao 已提交
1289 1290
**示例:**

M
m00512953 已提交
1291
```ts
C
chenyuyan 已提交
1292 1293
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1294
try {
M
mingxihua 已提交
1295
  let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1296
  formHost.deleteInvalidForms(formIds).then((data) => {
M
mingxihua 已提交
1297
    console.log('formHost deleteInvalidForms, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1298
  }).catch((error) => {
M
mingxihua 已提交
1299
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1300 1301
  });
} catch(error) {
M
mingxihua 已提交
1302
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
}
```

## 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 已提交
1320 1321
| 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 已提交
1322 1323 1324 1325 1326

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1327 1328 1329 1330 1331 1332 1333
| 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. |
1334 1335

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1336 1337 1338

**示例:**

M
m00512953 已提交
1339
```ts
C
chenyuyan 已提交
1340 1341 1342
import formHost from '@ohos.app.form.formHost';

let want = {
M
mingxihua 已提交
1343 1344 1345 1346 1347 1348 1349
  '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 已提交
1350 1351 1352 1353 1354
  }
};
try {
  formHost.acquireFormState(want, (error, data) => {
    if (error) {
M
mingxihua 已提交
1355
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1356
    } else {
M
mingxihua 已提交
1357
      console.log('formHost acquireFormState, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1358 1359 1360
    }
  });
} catch(error) {
M
mingxihua 已提交
1361
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
}
```

## acquireFormState

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

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

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

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

**参数:**

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

**返回值:**

| 类型          | 说明                                |
| :------------ | :---------------------------------- |
Y
yangzk 已提交
1385
| Promise<[formInfo.FormStateInfo](js-apis-app-form-formInfo.md#formstateinfo)> | Promise对象,返回卡片状态。 |
Y
yanwenhao 已提交
1386 1387 1388 1389 1390

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1391 1392 1393 1394 1395 1396 1397
| 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. |
1398 1399

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1400 1401 1402

**示例:**

M
m00512953 已提交
1403
```ts
C
chenyuyan 已提交
1404 1405 1406
import formHost from '@ohos.app.form.formHost';

let want = {
M
mingxihua 已提交
1407 1408 1409 1410 1411 1412 1413
  '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 已提交
1414 1415 1416 1417
  }
};
try {
  formHost.acquireFormState(want).then((data) => {
M
mingxihua 已提交
1418
    console.log('formHost acquireFormState, data: ${JSON.stringify(data)}');
Y
yanwenhao 已提交
1419
  }).catch((error) => {
M
mingxihua 已提交
1420
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1421 1422
  });
} catch(error) {
M
mingxihua 已提交
1423
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1424 1425 1426
}
```

M
mingxihua 已提交
1427
## on('formUninstall')
Y
yanwenhao 已提交
1428

M
mingxihua 已提交
1429
on(type: 'formUninstall', callback: Callback<string>): void
Y
yanwenhao 已提交
1430 1431 1432 1433 1434 1435 1436 1437 1438

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

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

**参数:**

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

1442 1443 1444 1445 1446 1447
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
1448 1449

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
1450

Y
yanwenhao 已提交
1451 1452
**示例:**

M
m00512953 已提交
1453
```ts
C
chenyuyan 已提交
1454 1455
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1456
let callback = function(formId) {
M
mingxihua 已提交
1457
  console.log('formHost on formUninstall, formId: ${formId}');
Y
yanwenhao 已提交
1458
}
M
mingxihua 已提交
1459
formHost.on('formUninstall', callback);
Y
yanwenhao 已提交
1460 1461
```

M
mingxihua 已提交
1462
## off('formUninstall')
Y
yanwenhao 已提交
1463

M
mingxihua 已提交
1464
off(type: 'formUninstall', callback?: Callback<string>): void
Y
yanwenhao 已提交
1465 1466 1467 1468 1469 1470 1471 1472 1473

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

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

**参数:**

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

1477 1478 1479 1480 1481 1482
**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
| 202 | The application is not a system application. |
| 401 | If the input parameter is not valid parameter. |
1483 1484

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
1485

Y
yanwenhao 已提交
1486 1487
**示例:**

M
m00512953 已提交
1488
```ts
C
chenyuyan 已提交
1489 1490
import formHost from '@ohos.app.form.formHost';

Y
yanwenhao 已提交
1491
let callback = function(formId) {
M
mingxihua 已提交
1492
  console.log('formHost on formUninstall, formId: ${formId}');
Y
yanwenhao 已提交
1493
}
M
mingxihua 已提交
1494
formHost.off('formUninstall', callback);
Y
yanwenhao 已提交
1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
```

## 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 已提交
1513
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。当通知卡片是否可见成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
1514 1515 1516 1517 1518

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1519 1520 1521 1522 1523 1524 1525
| 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. |
1526 1527

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1528 1529 1530

**示例:**

M
m00512953 已提交
1531
```ts
C
chenyuyan 已提交
1532 1533
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1534
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1535
try {
Y
yangzk 已提交
1536
  formHost.notifyFormsVisible(formIds, true, (error) => {
Y
yanwenhao 已提交
1537
    if (error) {
M
mingxihua 已提交
1538
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1539 1540 1541
    }
  });
} catch(error) {
M
mingxihua 已提交
1542
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
}
```

## 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 | 错误信息 |
| -------- | -------- |
1573 1574 1575 1576 1577 1578 1579
| 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. |
1580 1581

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1582 1583 1584

**示例:**

M
m00512953 已提交
1585
```ts
C
chenyuyan 已提交
1586 1587
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1588
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1589 1590 1591 1592
try {
  formHost.notifyFormsVisible(formIds, true).then(() => {
    console.log('formHost notifyFormsVisible success');
  }).catch((error) => {
M
mingxihua 已提交
1593
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1594 1595
  });
} catch(error) {
M
mingxihua 已提交
1596
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615
}
```

## 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 已提交
1616
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。当通知卡片是否启用更新状态成功,error为undefined,否则为错误对象。 |
Y
yanwenhao 已提交
1617 1618 1619 1620 1621

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1622 1623 1624 1625 1626 1627 1628
| 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. |
1629 1630

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1631 1632 1633

**示例:**

M
m00512953 已提交
1634
```ts
C
chenyuyan 已提交
1635 1636
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1637
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1638
try {
Y
yangzk 已提交
1639
  formHost.notifyFormsEnableUpdate(formIds, true, (error) => {
Y
yanwenhao 已提交
1640
    if (error) {
M
mingxihua 已提交
1641
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1642 1643 1644
    }
  });
} catch(error) {
M
mingxihua 已提交
1645
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
}
```

## 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 | 错误信息 |
| -------- | -------- |
1676 1677 1678 1679 1680 1681 1682
| 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. |
1683 1684

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1685 1686 1687

**示例:**

M
m00512953 已提交
1688
```ts
C
chenyuyan 已提交
1689 1690
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1691
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1692 1693 1694 1695
try {
  formHost.notifyFormsEnableUpdate(formIds, true).then(() => {
    console.log('formHost notifyFormsEnableUpdate success');
  }).catch((error) => {
M
mingxihua 已提交
1696
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1697 1698
  });
} catch(error) {
M
mingxihua 已提交
1699
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1700 1701 1702 1703 1704 1705 1706 1707
}
```
## shareForm

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

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

D
fix  
donglin 已提交
1708
**需要权限**:ohos.permission.REQUIRE_FORM 和 ohos.permission.DISTRIBUTED_DATASYNC
Y
yanwenhao 已提交
1709 1710 1711 1712 1713 1714 1715 1716 1717

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1724 1725 1726 1727 1728 1729 1730
| 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. |
1731 1732

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1733 1734 1735

**示例:**

M
m00512953 已提交
1736
```ts
C
chenyuyan 已提交
1737 1738
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1739 1740
let formId = '12400633174999288';
let deviceId = 'EFC11C0C53628D8CC2F8CB5052477E130D075917034613B9884C55CD22B3DEF2';
Y
yanwenhao 已提交
1741
try {
Y
yangzk 已提交
1742
  formHost.shareForm(formId, deviceId, (error) => {
Y
yanwenhao 已提交
1743
    if (error) {
M
mingxihua 已提交
1744
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1745 1746 1747
    }
  });
} catch(error) {
M
mingxihua 已提交
1748
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1749 1750 1751 1752 1753 1754 1755 1756 1757
}
```

## shareForm

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

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

D
fix  
donglin 已提交
1758
**需要权限**:ohos.permission.REQUIRE_FORM 和 ohos.permission.DISTRIBUTED_DATASYNC
Y
yanwenhao 已提交
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778

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

**参数:**

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

**返回值:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
1779 1780 1781 1782 1783 1784 1785
| 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. |
1786 1787

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yanwenhao 已提交
1788

Y
yangzk 已提交
1789
**示例:**
Y
yanwenhao 已提交
1790

M
m00512953 已提交
1791
```ts
C
chenyuyan 已提交
1792 1793
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1794 1795
let formId = '12400633174999288';
let deviceId = 'EFC11C0C53628D8CC2F8CB5052477E130D075917034613B9884C55CD22B3DEF2';
Y
yanwenhao 已提交
1796 1797 1798 1799
try {
  formHost.shareForm(formId, deviceId).then(() => {
    console.log('formHost shareForm success');
  }).catch((error) => {
M
mingxihua 已提交
1800
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1801 1802
  });
} catch(error) {
M
mingxihua 已提交
1803
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1804 1805 1806 1807 1808
}
```

## notifyFormsPrivacyProtected

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

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

Y
yanwenhao 已提交
1813 1814 1815 1816 1817 1818 1819 1820
**需要权限**:ohos.permission.REQUIRE_FORM

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

**参数:**

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

**错误码:**

1827 1828 1829 1830 1831 1832 1833 1834
| 错误码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. |
1835 1836

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yangzk 已提交
1837 1838

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

M
m00512953 已提交
1840
```ts
C
chenyuyan 已提交
1841 1842
import formHost from '@ohos.app.form.formHost';

M
mingxihua 已提交
1843
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yangzk 已提交
1844 1845 1846
try {
  formHost.notifyFormsPrivacyProtected(formIds, true, (error) => {
    if (error) {
M
mingxihua 已提交
1847
      console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yangzk 已提交
1848 1849 1850
    }
  });
} catch(error) {
M
mingxihua 已提交
1851
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yangzk 已提交
1852 1853 1854 1855 1856
}
```

## notifyFormsPrivacyProtected

1857
notifyFormsPrivacyProtected(formIds: Array\<string\>, isProtected: boolean): Promise\<void\>;
Y
yangzk 已提交
1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879

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

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

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

**参数:**

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

**返回值:**

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

**错误码:**

1880 1881 1882 1883 1884 1885 1886 1887
| 错误码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. |
1888 1889

以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)
Y
yangzk 已提交
1890 1891

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

M
mingxihua 已提交
1894
let formIds = new Array('12400633174999288', '12400633174999289');
Y
yanwenhao 已提交
1895 1896
try {
  formHost.notifyFormsPrivacyProtected(formIds, true).then(() => {
Y
yangzk 已提交
1897
    console.log('formHost notifyFormsPrivacyProtected success');
Y
yanwenhao 已提交
1898
  }).catch((error) => {
M
mingxihua 已提交
1899
    console.error(`error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1900 1901
  });
} catch(error) {
M
mingxihua 已提交
1902
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
Y
yanwenhao 已提交
1903 1904
}
```
Y
yangzk 已提交
1905

W
wangkailong 已提交
1906 1907
## acquireFormData<sup>10+</sup>

1908
acquireFormData(formId: string, callback: AsyncCallback<{[key: string]: Object}>): void;
W
wangkailong 已提交
1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925

请求卡片提供方数据。使用callback异步回调。

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

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

**参数:**

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

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
Y
yuyaozhi 已提交
1926 1927
| 201 | Permissions denied. |
| 401 | If the input parameter is not valid parameter. |
W
wangkailong 已提交
1928 1929 1930 1931 1932
| 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. |

1933 1934
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)

W
wangkailong 已提交
1935 1936 1937 1938 1939 1940 1941
**示例:**

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

let formId = '12400633174999288';
try {
W
acquire  
wangkailong 已提交
1942
  formHost.acquireFormData(formId, (error, data) => {
W
wangkailong 已提交
1943 1944
    if (error) {
      console.error(`error, code: ${error.code}, message: ${error.message}`);
W
acquire  
wangkailong 已提交
1945 1946
    } else {
      console.log('formHost acquireFormData, data: ${JSON.stringify(data)}');
W
wangkailong 已提交
1947 1948 1949 1950 1951 1952 1953 1954 1955
    }
  });
} catch(error) {
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
}
```

## acquireFormData<sup>10+</sup>

1956
acquireFormData(formId: string): Promise<{[key: string]: Object}>;
W
wangkailong 已提交
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973

请求卡片提供方数据。使用Promise异步回调。

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

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

**参数:**

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

**返回值:**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
W
acquire  
wangkailong 已提交
1974
| Promise<{[key: string]: Object}>| 以Promise方式返回接口运行结果及分享数据。 |
W
wangkailong 已提交
1975 1976 1977 1978 1979

**错误码:**

| 错误码ID | 错误信息 |
| -------- | -------- |
Y
yuyaozhi 已提交
1980 1981
| 201 | Permissions denied. |
| 401 | If the input parameter is not valid parameter. |
W
wangkailong 已提交
1982 1983 1984 1985 1986
| 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. |

1987 1988
以上错误码的详细介绍请参见[卡片错误码](../errorcodes/errorcode-form.md)

W
wangkailong 已提交
1989 1990 1991 1992 1993
```ts
import formHost from '@ohos.app.form.formHost';

let formId = '12400633174999288';
try {
W
acquire  
wangkailong 已提交
1994 1995
  formHost.acquireFormData(formId).then((data) => {
    console.log('formHost acquireFormData success' + data);
W
wangkailong 已提交
1996 1997 1998 1999 2000 2001 2002
  }).catch((error) => {
    console.error(`error, code: ${error.code}, message: ${error.message}`);
  });
} catch(error) {
  console.error(`catch error, code: ${error.code}, message: ${error.message}`);
}
```