js-apis-calendarManager.md 35.5 KB
Newer Older
Z
z00797030 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# @ohos.calendarManager (日程管理能力)

本模块提供账户与日程管理能力,包括创建、删除、修改、查询等

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


## 导入模块

```javascript
import calendarManager from'@ohos.calendarManager';
```


## calendarManager.createCalendar

Z
z00797030 已提交
19
createCalendar(calendarAccount: [CalendarAccount](#calendaraccount), callback: AsyncCallback<[Calendar](#calendar)>): void
Z
z00797030 已提交
20 21 22 23 24 25 26 27 28 29 30

创建账户,使用回调的方式实现异步调用。

**需要权限**: ohos.permission.WRITE_CALENDAR or ohos.permission.WRITE_WHOLE_CALENDAR

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名          | 类型                                  | 必填 | 说明                               |
| --------------- | ------------------------------------- | ---- | ---------------------------------- |
Z
z00797030 已提交
31 32
| calendarAccount | [CalendarAccount](#calendaraccount)   | 是   | 账户信息实例。                     |
| callback        | AsyncCallback\<[Calendar](#calendar)> | 是   | 异步回调,返回创建的Calendar对象。 |
Z
z00797030 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

**错误码:**

| 错误码ID | 错误信息                    |
| -------- | --------------------------- |
| 201      | Permission denied.          |
| 401      | The parameter check failed. |
| 801      | Capability not supported.   |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

calendarManager.createCalendar({ name: 'MyCalendar', type: calendarManager.CalendarType.LOCAL }, (err, data) => {
  if (err) {
    console.log("create calendar failed");
  } else {
    console.log("create calendar success");
  }
});
```

## calendarManager.createCalendar

Z
z00797030 已提交
58
createCalendar(calendarAccount: [CalendarAccount](#calendaraccount)): Promise<[Calendar](#calendar)>
Z
z00797030 已提交
59 60 61 62 63 64 65 66 67 68 69

创建账户,使用Promise方式实现异步调用。

**需要权限**: ohos.permission.WRITE_CALENDAR or ohos.permission.WRITE_WHOLE_CALENDAR

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名          | 类型                                | 必填 | 说明           |
| --------------- | ----------------------------------- | ---- | -------------- |
Z
z00797030 已提交
70
| calendarAccount | [CalendarAccount](#calendaraccount) | 是   | 账户信息实例。 |
Z
z00797030 已提交
71 72 73 74 75

**返回值**

| 类型                           | 说明           |
| ------------------------------ | -------------- |
Z
z00797030 已提交
76
| Promise<[Calendar](#calendar)> | 返回账户实例。 |
Z
z00797030 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

**错误码:**

| 错误码ID | 错误信息                    |
| -------- | --------------------------- |
| 201      | Permission denied.          |
| 401      | The parameter check failed. |
| 801      | Capability not supported.   |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

calendarManager.createCalendar({ name: 'MyCalendar', type: calendarManager.CalendarType.LOCAL }).then((data) => {
  console.log("create calendar success");
}).catch((err) => {
  console.log("create calendar failed");
});
```

## calendarManager.deleteCalendar

Z
z00797030 已提交
100
deleteCalendar(calendar: [Calendar](#calendar), callback: AsyncCallback<void>): void
Z
z00797030 已提交
101 102 103 104 105 106 107 108 109 110 111

删除账户,使用回调的方式实现异步调用。

**需要权限**: ohos.permission.WRITE_CALENDAR or ohos.permission.WRITE_WHOLE_CALENDAR

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
Z
z00797030 已提交
112
| calendar | [Calendar](#calendar) | 是   | 账户实例。 |
Z
z00797030 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
| callback | AsyncCallback<void>   | 是   | 异步回调。 |

**错误码:**

| 错误码ID | 错误信息                    |
| -------- | --------------------------- |
| 201      | Permission denied.          |
| 401      | The parameter check failed. |
| 801      | Capability not supported.   |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar({ name: 'MyCalendar', type: calendarManager.CalendarType.LOCAL });
calendarManager.deleteCalendar(calendar, (err, data) => {
  if (err) {
    console.log("delete calendar failed");
  } else {
    console.log("delete calendar success");
  }
});
```

## calendarManager.deleteCalendar

Z
z00797030 已提交
140
deleteCalendar(calendar: [Calendar](#calendar)): Promise<void>
Z
z00797030 已提交
141 142 143 144 145 146 147 148 149 150 151

删除账户,使用Promise方式实现异步调用。

**需要权限**: ohos.permission.WRITE_CALENDAR or ohos.permission.WRITE_WHOLE_CALENDAR

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                  | 必填 | 说明       |
| -------- | --------------------- | ---- | ---------- |
Z
z00797030 已提交
152
| calendar | [Calendar](#calendar) | 是   | 账户实例。 |
Z
z00797030 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182

**返回值**

| 类型          | 说明                  |
| ------------- | --------------------- |
| Promise<void> | Promise类型异步回调。 |

**错误码:**

| 错误码ID | 错误信息                    |
| -------- | --------------------------- |
| 201      | Permission denied.          |
| 401      | The parameter check failed. |
| 801      | Capability not supported.   |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar({ name: 'MyCalendar', type: calendarManager.CalendarType.LOCAL });
calendarManager.deleteCalendar(calendar).then((data) => {
  console.log("delete calendar success");
}).catch((err) => {
  console.log("delete calendar failed");
});
```

## calendarManager.getCalendar

Z
z00797030 已提交
183
getCalendar(callback: AsyncCallback<[Calendar](#calendar)>): void
Z
z00797030 已提交
184 185 186 187 188 189 190 191 192 193 194

获取默认账户,使用回调的方式实现异步调用。

**需要权限**:ohos.permission.READ_CALENDAR or ohos.permission.READ_WHOLE_CALENDAR

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                                 | 必填 | 说明                           |
| -------- | ------------------------------------ | ---- | ------------------------------ |
Z
z00797030 已提交
195
| callback | AsyncCallback<[Calendar](#calendar)> | 是   | 异步回调,返回查询的账户实例。 |
Z
z00797030 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220

**错误码:**

| 错误码ID | 错误信息                    |
| -------- | --------------------------- |
| 201      | Permission denied.          |
| 401      | The parameter check failed. |
| 801      | Capability not supported.   |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

calendarManager.getCalendar((err, data) => {
  if (err) {
    console.log("get calendar failed");
  } else {
    console.log("get calendar success");
  }
});
```

## calendarManager.getCalendar

Z
z00797030 已提交
221
getCalendar(calendarAccount: [CalendarAccount](#calendaraccount),callback: AsyncCallback<[Calendar](#calendar)>): void
Z
z00797030 已提交
222 223 224 225 226 227 228 229 230 231 232

获取指定账户,使用回调的方式实现异步调用。

**需要权限**: ohos.permission.READ_CALENDAR or ohos.permission.READ_WHOLE_CALENDAR

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名          | 类型                                 | 必填 | 说明                           |
| --------------- | ------------------------------------ | ---- | ------------------------------ |
Z
z00797030 已提交
233 234
| calendarAccount | [CalendarAccount](#calendaraccount)  | 是   | 账户信息实例                   |
| callback        | AsyncCallback<[Calendar](#calendar)> | 是   | 异步回调,返回查询的账户实例。 |
Z
z00797030 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259

**错误码:**

| 错误码ID | 错误信息                    |
| -------- | --------------------------- |
| 201      | Permission denied.          |
| 401      | The parameter check failed. |
| 801      | Capability not supported.   |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

calendarManager.getCalendar({ name: 'MyCalendar', type: calendarManager.CalendarType.LOCAL }, (err, data) => {
  if (err) {
    console.log("get calendar failed");
  } else {
    console.log("get calendar success");
  }
});
```

## calendarManager.getCalendar

Z
z00797030 已提交
260
getCalendar(calendarAccount?: [CalendarAccount](#calendaraccount)): Promise<[Calendar](#calendar)>
Z
z00797030 已提交
261 262 263 264 265 266 267 268 269 270 271

获取账户,使用Promise的方式实现异步调用。

**需要权限**: ohos.permission.READ_CALENDAR or ohos.permission.READ_WHOLE_CALENDAR

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名          | 类型                                | 必填 | 说明         |
| --------------- | ----------------------------------- | ---- | ------------ |
Z
z00797030 已提交
272
| calendarAccount | [CalendarAccount](#calendaraccount) | 否   | 账户信息实例 |
Z
z00797030 已提交
273 274 275 276 277

**返回值**

| 类型                           | 说明                 |
| ------------------------------ | -------------------- |
Z
z00797030 已提交
278
| Promise<[Calendar](#calendar)> | 返回查询的账户实例。 |
Z
z00797030 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302

**错误码:**

| 错误码ID | 错误信息                    |
| -------- | --------------------------- |
| 201      | Permission denied.          |
| 401      | The parameter check failed. |
| 801      | Capability not supported.   |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';


calendarManager.getCalendar().then((data) => {
  console.log("get calendar success");
}).catch((err) => {
  console.log("get calendar failed");
});
```

## calendarManager.getAllCalendars

Z
z00797030 已提交
303
getAllCalendars(callback: AsyncCallback<[Calendar](#calendar)[]>): void
Z
z00797030 已提交
304 305 306 307 308 309 310 311 312 313 314

获取当前应用所有创建的账户以及默认账户,使用回调的方式实现异步调用。

**需要权限**: ohos.permission.READ_CALENDAR or ohos.permission.READ_WHOLE_CALENDAR

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                                   | 必填 | 说明                                |
| -------- | -------------------------------------- | ---- | ----------------------------------- |
Z
z00797030 已提交
315
| callback | AsyncCallback<[Calendar](#calendar)[]> | 是   | 异步回调, 返回查询的账户实例数组。 |
Z
z00797030 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340

**错误码:**

| 错误码ID | 错误信息                    |
| -------- | --------------------------- |
| 201      | Permission denied.          |
| 401      | The parameter check failed. |
| 801      | Capability not supported.   |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

calendarManager.getAllCalendars((err, data) => {
  if (err) {
    console.log("get all calendars failed");
  } else {
    console.log("get all calendars success");
  }
});
```

## calendarManager.getAllCalendars

Z
z00797030 已提交
341
getAllCalendars(): Promise<[Calendar](#calendar)[]>
Z
z00797030 已提交
342 343 344 345 346 347 348 349 350 351 352

获取当前应用所有创建的账户以及默认账户,使用Promise方式实现异步调用。

**需要权限**: ohos.permission.READ_CALENDAR or ohos.permission.READ_WHOLE_CALENDAR

**系统能力**: SystemCapability.Applications.CalendarData

**返回值**

| 类型                             | 说明                     |
| -------------------------------- | ------------------------ |
Z
z00797030 已提交
353
| Promise<[Calendar](#calendar)[]> | 返回查询的账户实例数组。 |
Z
z00797030 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386

**错误码:**

| 错误码ID | 错误信息                    |
| -------- | --------------------------- |
| 201      | Permission denied.          |
| 401      | The parameter check failed. |
| 801      | Capability not supported.   |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

calendarManager.getAllCalendars().then((data) => {
  console.log("get all calendars success");
}).catch((err) => {
  console.log("get all calendars failed");
});
```

## Calendar

### 属性

**系统能力**:SystemCapability.Applications.CalendarData

| 名称 | 类型   | 只读 | 必填 | 说明   |
| ---- | ------ | ---- | ---- | ------ |
| id   | number | 是   | 是   | 账户id |

### addEvent

Z
z00797030 已提交
387
addEvent(event:   [Event](#event), callback: AsyncCallback<number>): void
Z
z00797030 已提交
388 389 390 391 392 393 394 395 396

创建日程,使用回调的方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                  | 必填 | 说明                   |
| -------- | --------------------- | ---- | ---------------------- |
Z
z00797030 已提交
397
| event    | [Event](#event)       | 是   | 日程具体参数实例。     |
Z
z00797030 已提交
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
| callback | AsyncCallback<number> | 是   | 异步回调,返回日程id。 |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const date = new Date();
const event: calendarManager.Event = {
  type: calendarManager.EventType.NORMAL,
  startTimer: date.getTime(),
  endTimer: date.getTime() + 60 * 60 * 1000
};
calendar.addEvent(event, (err, data) => {
  if (err) {
    console.log("add event failed");
  } else {
    console.log("add event success");
  }
});
```

### addEvent

Z
z00797030 已提交
423
addEvent(event:   [Event](#event)): Promise<number>
Z
z00797030 已提交
424 425 426 427 428 429 430 431 432

创建日程,使用Promise方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名 | 类型            | 必填 | 说明               |
| ------ | --------------- | ---- | ------------------ |
Z
z00797030 已提交
433
| event  | [Event](#event) | 是   | 日程具体参数实例。 |
Z
z00797030 已提交
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 459 460 461

**返回值**

| 类型             | 说明           |
| ---------------- | -------------- |
| Promise\<number> | 返回日程的id。 |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const date = new Date();
const event: calendarManager.Event = {
  type: calendarManager.EventType.NORMAL,
  startTimer: date.getTime(),
  endTimer: date.getTime() + 60 * 60 * 1000
};
calendar.addEvent(event).then((data) => {
  console.log("add event success");
}).catch((err) => {
  console.log("add event failed");
});
```

### addEvents

Z
z00797030 已提交
462
addEvents(events: [Event](#event)[], callback: AsyncCallback<void>): void
Z
z00797030 已提交
463 464 465 466 467 468 469 470 471

批量创建日程,使用回调的方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                | 必填 | 说明                   |
| -------- | ------------------- | ---- | ---------------------- |
Z
z00797030 已提交
472
| events   | [Event](#event)[]   | 是   | 日程具体参数实例数组。 |
Z
z00797030 已提交
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 498 499 500 501 502 503 504
| callback | AsyncCallback<void> | 是   | 异步回调。             |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const date = new Date();
const events: calendarManager.Event[] = [
  {
    type: calendarManager.EventType.NORMAL,
    startTimer: date.getTime(),
    endTimer: date.getTime() + 60 * 60 * 1000
  },
  {
    type: calendarManager.EventType.NORMAL,
    startTimer: date.getTime(),
    endTimer: date.getTime() + 60 * 60 * 1000
  }
];
calendar.addEvents(events, (err, data) => {
  if (err) {
    console.log("add events failed");
  } else {
    console.log("add events success");
  }
});
```

### addEvents

Z
z00797030 已提交
505
addEvents(events:   [Event](#event)[]): Promise<void>
Z
z00797030 已提交
506 507 508 509 510 511 512 513 514

批量创建日程,使用Promise方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名 | 类型              | 必填 | 说明                   |
| ------ | ----------------- | ---- | ---------------------- |
Z
z00797030 已提交
515
| events | [Event](#event)[] | 是   | 日程具体参数实例数组。 |
Z
z00797030 已提交
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 542 543 544 545 546 547 548 549 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 581 582 583 584 585 586 587 588 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 625 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 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676

**返回值**

| 类型          | 说明                  |
| ------------- | --------------------- |
| Promise<void> | Promise类型异步回调。 |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const date = new Date();
const events: calendarManager.Event[] = [
  {
    type: calendarManager.EventType.NORMAL,
    startTimer: date.getTime(),
    endTimer: date.getTime() + 60 * 60 * 1000
  },
  {
    type: calendarManager.EventType.NORMAL,
    startTimer: date.getTime(),
    endTimer: date.getTime() + 60 * 60 * 1000
  }
];
calendar.addEvents(events).then(() => {
  console.log("add events success");
}).catch((err) => {
  console.log("add events failed");
});
```

### deleteEvent

deleteEvent(id: number, callback: AsyncCallback<void>): void

删除日程,使用回调的方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                | 必填 | 说明       |
| -------- | ------------------- | ---- | ---------- |
| id       | number              | 是   | 日程id。   |
| callback | AsyncCallback<void> | 是   | 异步回调。 |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
calendar.deleteEvent(1, (err, data) => {
  if (err) {
    console.log("delete event failed");
  } else {
    console.log("delete event success");
  }
});
```

### deleteEvent

deleteEvent(id: number): Promise<void>

删除日程,使用Promise方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名 | 类型   | 必填 | 说明     |
| ------ | ------ | ---- | -------- |
| id     | number | 是   | 日程id。 |

**返回值**

| 类型          | 说明                  |
| ------------- | --------------------- |
| Promise<void> | Promise类型异步回调。 |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
calendar.deleteEvent(1).then(() => {
  console.log("delete event success");
}).catch((err) => {
  console.log("delete event failed");
});
```

### deleteEvents

deleteEvents(ids: number[], callback: AsyncCallback<void>): void

批量删除日程,使用回调的方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                | 必填 | 说明         |
| -------- | ------------------- | ---- | ------------ |
| ids      | number[]            | 是   | 日程id数组。 |
| callback | AsyncCallback<void> | 是   | 异步回调。   |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
calendar.deleteEvents([1, 2], (err, data) => {
  if (err) {
    console.log("delete events failed");
  } else {
    console.log("delete events success");
  }
});
```

### deleteEvents

deleteEvents(ids: number[]): Promise<void>

批量删除日程,使用Promise方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名 | 类型     | 必填 | 说明         |
| ------ | -------- | ---- | ------------ |
| ids    | number[] | 是   | 日程id数组。 |

**返回值**

| 类型          | 说明                  |
| ------------- | --------------------- |
| Promise<void> | Promise类型异步回调。 |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
calendar.deleteEvents([1, 2]).then(() => {
  console.log("delete events success");
}).catch((err) => {
  console.log("delete events failed");
});
```

### updateEvent

Z
z00797030 已提交
677
updateEvent(event: [Event](#event), callback: AsyncCallback<void>): void
Z
z00797030 已提交
678 679 680 681 682 683 684 685 686

更新日程,使用回调的方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                | 必填 | 说明               |
| -------- | ------------------- | ---- | ------------------ |
Z
z00797030 已提交
687
| event    | [Event](#event)     | 是   | 日程具体参数示例。 |
Z
z00797030 已提交
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
| callback | AsyncCallback<void> | 是   | 异步回调。         |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const date = new Date();
const event: calendarManager.Event = {
  id: 1,
  title: 'update',
  type: calendarManager.EventType.NORMAL,
  startTimer: date.getTime(),
  endTimer: date.getTime() + 60 * 60 * 1000
};
calendar.updateEvent(event, (err, data) => {
  if (err) {
    console.log("update event failed");
  } else {
    console.log("update event success");
  }
});
```

### updateEvent

Z
z00797030 已提交
715
updateEvent(event: [Event](#event)): Promise<void>
Z
z00797030 已提交
716 717 718 719 720 721 722 723 724

更新日程,使用Promise方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名 | 类型            | 必填 | 说明               |
| ------ | --------------- | ---- | ------------------ |
Z
z00797030 已提交
725
| event  | [Event](#event) | 是   | 日程具体参数示例。 |
Z
z00797030 已提交
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 755

**返回值**

| 类型          | 说明                  |
| ------------- | --------------------- |
| Promise<void> | Promise类型异步回调。 |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const date = new Date();
const event: calendarManager.Event = {
  id: 1,
  title: 'update',
  type: calendarManager.EventType.NORMAL,
  startTimer: date.getTime(),
  endTimer: date.getTime() + 60 * 60 * 1000
};
calendar.updateEvent(event).then(() => {
  console.log("update event success");
}).catch((err) => {
  console.log("update event failed");
});
```

### getEvents

Z
z00797030 已提交
756
getEvents(callback: AsyncCallback<[Event](#event)[]>): void
Z
z00797030 已提交
757 758 759 760 761 762 763 764 765

查询账户下所有日程,使用回调的方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                             | 必填 | 说明                             |
| -------- | -------------------------------- | ---- | -------------------------------- |
Z
z00797030 已提交
766
| callback | AsyncCallback<[Event](#event)[]> | 是   | 异步回调,返回的是日程实例数组。 |
Z
z00797030 已提交
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
calendar.getEvents((err, data) => {
  if (err) {
    console.log("get events failed");
  } else {
    console.log("get events success");
  }
});
```

### getEvents

Z
z00797030 已提交
785
getEvents(eventFilter: [EventFilter](#eventfilter), eventKey: (keyof [Event](#event))[], callback: AsyncCallback<[Event](#event)[]>):void
Z
z00797030 已提交
786 787 788 789 790 791 792 793 794

查询账户下符合条件的日程,使用回调的方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名      | 类型                             | 必填 | 说明                             |
| ----------- | -------------------------------- | ---- | -------------------------------- |
Z
z00797030 已提交
795 796 797
| eventFilter | [EventFilter](#eventfilter)      | 是   | 查询条件                         |
| eventKey    | (keyof [Event](#event))[]        | 是   | 查询结果集                       |
| callback    | AsyncCallback<[Event](#event)[]> | 是   | 异步回调,返回的是日程实例数组。 |
Z
z00797030 已提交
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const filter = calendarManager.EventFilter.filterById([1, 2]);
const columns: (keyof calendarManager.Event)[] =  ['title', 'type', 'startTimer', 'endTimer'];
calendar.getEvents(filter, columns, (err, data) => {
  if (err) {
    console.log("get events failed");
  } else {
    console.log("get events success");
  }
});
```

### getEvents

Z
z00797030 已提交
818
getEvents(eventFilter?: [EventFilter](#eventfilter), eventKey?: (keyof [Event](#event))[]): Promise<[Event](#event)[]>
Z
z00797030 已提交
819 820 821 822 823 824 825 826 827

查询账户下符合条件的日程,使用Promise方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名      | 类型                        | 必填 | 说明       |
| ----------- | --------------------------- | ---- | ---------- |
Z
z00797030 已提交
828 829
| eventFilter | [EventFilter](#eventfilter) | 否   | 查询条件   |
| eventKey    | (keyof [Event](#event))[]   | 否   | 查询结果集 |
Z
z00797030 已提交
830 831 832 833 834

**返回值**

| 类型                       | 说明               |
| -------------------------- | ------------------ |
Z
z00797030 已提交
835
| Promise<[Event](#event)[]> | 返回日程实例数组。 |
Z
z00797030 已提交
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const filter = calendarManager.EventFilter.filterByTitle('MyEvent');
calendar.getEvents(filter).then((data) => {
  console.log("get events success");
}).catch((err) => {
  console.log("get events failed");
});
```

### getConfig

Z
z00797030 已提交
853
getConfig(): [CalendarConfig](#calendarconfig)
Z
z00797030 已提交
854 855 856 857 858 859 860 861 862

获取账户具体参数。

**系统能力**: SystemCapability.Applications.CalendarData

**返回值**

| 类型                              | 说明               |
| --------------------------------- | ------------------ |
Z
z00797030 已提交
863
| [CalendarConfig](#calendarconfig) | 返回账户参数实例。 |
Z
z00797030 已提交
864 865 866 867 868 869 870 871 872 873 874 875 876

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const config = calendar.getConfig();
console.log("get config success");
```

### setConfig

Z
z00797030 已提交
877
setConfig(config: [CalendarConfig](#calendarconfig), callback: AsyncCallback<void>): void
Z
z00797030 已提交
878 879 880 881 882 883 884 885 886

设置账户参数,使用回调的方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名   | 类型                              | 必填 | 说明             |
| -------- | --------------------------------- | ---- | ---------------- |
Z
z00797030 已提交
887
| config   | [CalendarConfig](#calendarconfig) | 是   | 账户具体参数实例 |
Z
z00797030 已提交
888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
| callback | AsyncCallback<void>               | 是   | 异步回调。       |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const config: calendarManager.CalendarConfig = {
  enableReminder: true
};
calendar.setConfig(config, (err, data) => {
  if (err) {
    console.log("set config failed");
  } else {
    console.log("set config success");
  }
});
```

### setConfig

Z
z00797030 已提交
910
setConfig(config:  [CalendarConfig](#calendarconfig)): Promise<void>
Z
z00797030 已提交
911 912 913 914 915 916 917 918 919

设置账户参数,使用Promise方式实现异步调用。

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名 | 类型                              | 必填 | 说明             |
| ------ | --------------------------------- | ---- | ---------------- |
Z
z00797030 已提交
920
| config | [CalendarConfig](#calendarconfig) | 是   | 账户具体参数实例 |
Z
z00797030 已提交
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

**返回值**

| 类型          | 说明                  |
| ------------- | --------------------- |
| Promise<void> | Promise类型异步回调。 |

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const config: calendarManager.CalendarConfig = {
  enableReminder: true
};
calendar.setConfig(config).then(() => {
  console.log("set config success");
}).catch((err) => {
  console.log("set config failed");
});
```

### getAccount

Z
z00797030 已提交
946
getAccount(): [CalendarAccount](#calendaraccount)
Z
z00797030 已提交
947 948 949 950 951 952 953 954 955

获取账户信息。

**系统能力**: SystemCapability.Applications.CalendarData

**返回值**

| 类型                                | 说明               |
| ----------------------------------- | ------------------ |
Z
z00797030 已提交
956
| [CalendarAccount](#calendaraccount) | 返回账户信息实例。 |
Z
z00797030 已提交
957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const account = calendar.getAccount();
console.log("get account success");
```

## CalendarAccount

日历账户。

**系统能力**:SystemCapability.Applications.CalendarData

| 名称        | 类型                          | 只读 | 必填 | 说明           |
| ----------- | ----------------------------- | ---- | ---- | -------------- |
| name        | string                        | 是   | 是   | 账户名称       |
Z
z00797030 已提交
977
| type        | [CalendarType](#calendartype) | 否   | 是   | 账户类型       |
Z
z00797030 已提交
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999
| displayName | string                        | 否   | 否   | 账户的显示名称 |

## CalendarConfig

账户参数。

**系统能力**:SystemCapability.Applications.CalendarData

| 名称           | 类型          | 只读 | 必填 | 说明         |
| -------------- | ------------- | ---- | ---- | ------------ |
| enableReminder | boolean       | 否   | 否   | 账户提醒能力 |
| color          | ResourceColor | 否   | 否   | 账户颜色     |

## Event

日程实例对象,用于设置日程标题、开始时间、结束时间等具体信息。

**系统能力**:SystemCapability.Notification.ReminderAgent

| 名称           | 类型                              | 只读 | 必填 | 说明           |
| -------------- | --------------------------------- | ---- | ---- | -------------- |
| id             | number                            | 是   | 否   | 日程id         |
Z
z00797030 已提交
1000
| type           | [EventType](#eventtype)           | 否   | 是   | 日程类型       |
Z
z00797030 已提交
1001
| title          | string                            | 否   | 否   | 日程标题       |
Z
z00797030 已提交
1002
| location       | [Location](#location)             | 否   | 否   | 日程地点       |
Z
z00797030 已提交
1003 1004 1005
| startTimer     | number                            | 否   | 是   | 日程开始时间   |
| endTimer       | number                            | 否   | 是   | 日程结束时间   |
| isAllDay       | boolean                           | 否   | 否   | 是否为全天日程 |
Z
z00797030 已提交
1006
| attendee       | [Attendee](#attendee)[]           | 否   | 否   | 日程参与者     |
Z
z00797030 已提交
1007 1008
| timeZone       | string                            | 否   | 否   | 日程时区       |
| reminderTime   | number[]                          | 否   | 否   | 日程提醒时间   |
Z
z00797030 已提交
1009
| recurrenceRule | [RecurrenceRule](#recurrencerule) | 否   | 否   | 日程重复规则   |
Z
z00797030 已提交
1010
| description    | string                            | 否   | 否   | 日程描述       |
Z
z00797030 已提交
1011
| service        | [EventService](#eventservice)     | 否   | 否   | 日程服务       |
Z
z00797030 已提交
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042

## CalendarType

账户类型。

**系统能力**:SystemCapability.Applications.CalendarData

| 名称       | 值         | 说明       |
| ---------- | ---------- | ---------- |
| LOCAL      | local      | 本地账户   |
| EMAIL      | email      | 邮箱账户   |
| BIRTHDAY   | birthday   | 生日账户   |
| CALDAV     | caldav     | CalDAV账户 |
| SUBSCRIBED | subscribed | 订阅账户   |

## Location

日程地点。

**系统能力**:SystemCapability.Applications.CalendarData

| 名称      | 类型    | 只读 | 必填 | 说明     |
| --------- | ------- | ---- | ---- | -------- |
| location  | boolean | 否   | 否   | 地点位置 |
| longitude | number  | 否   | 否   | 地点经度 |
| latitude  | number  | 否   | 否   | 地点纬度 |

## EventFilter

### filterById

Z
z00797030 已提交
1043
filterById(ids: number[]): [EventFilter](#eventfilter)
Z
z00797030 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058

根据日程id进行过滤

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名 | 类型     | 必填 | 说明         |
| ------ | -------- | ---- | ------------ |
| ids    | number[] | 是   | 日程id数组。 |

**返回值**

| 类型                        | 说明                   |
| --------------------------- | ---------------------- |
Z
z00797030 已提交
1059
| [EventFilter](#eventfilter) | 返回日程过滤实例对象。 |
Z
z00797030 已提交
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const filter = calendarManager.EventFilter.filterById([1, 2]);
calendar.getEvents(filter).then((data) => {
  console.log("filter by id success");
}).catch((err) => {
  console.log("filter by id failed");
});
```

### filterByTime

Z
z00797030 已提交
1077
filterByTime(start: number, end: number):  [EventFilter](#eventfilter)
Z
z00797030 已提交
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093

根据日程时间进行过滤

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名 | 类型   | 必填 | 说明       |
| ------ | ------ | ---- | ---------- |
| start  | number | 是   | 开始时间。 |
| end    | number | 是   | 结束时间。 |

**返回值**

| 类型                        | 说明                   |
| --------------------------- | ---------------------- |
Z
z00797030 已提交
1094
| [EventFilter](#eventfilter) | 返回日程过滤实例对象。 |
Z
z00797030 已提交
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const filter = calendarManager.EventFilter.filterByTime(1686931200000, 1687017600000);
calendar.getEvents(filter).then((data) => {
  console.log("filter by time success");
}).catch((err) => {
  console.log("filter by time failed");
});
```

### filterByTitle

Z
z00797030 已提交
1112
filterByTitle(title: string):  [EventFilter](#eventfilter)
Z
z00797030 已提交
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127

根据日程时间进行过滤

**系统能力**: SystemCapability.Applications.CalendarData

**参数**

| 参数名 | 类型   | 必填 | 说明       |
| ------ | ------ | ---- | ---------- |
| title  | string | 是   | 日程标题。 |

**返回值**

| 类型                        | 说明                   |
| --------------------------- | ---------------------- |
Z
z00797030 已提交
1128
| [EventFilter](#eventfilter) | 返回日程过滤实例对象。 |
Z
z00797030 已提交
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162

**示例**

```javascript
import calendarManager from'@ohos.calendarManager';

const calendar = await calendarManager.getCalendar();
const filter = calendarManager.EventFilter.filterByTitle('MyEvent');
calendar.getEvents(filter).then(() => {
  console.log("filter by title success");
}).catch((err) => {
  console.log("filter by title failed");
});
```

## EventType

日程类型。

**系统能力**:SystemCapability.Applications.CalendarData

| 名称      | 值   | 说明     |
| --------- | ---- | -------- |
| NORMAL    | 0    | 普通日程 |
| IMPORTANT | 1    | 重要日程 |

## RecurrenceRule

日程重复规则。

**系统能力**:SystemCapability.Applications.CalendarData

| 名称                | 类型                                        | 只读 | 必填 | 说明             |
| ------------------- | ------------------------------------------- | ---- | ---- | ---------------- |
Z
z00797030 已提交
1163
| recurrenceFrequency | [RecurrenceFrequency](#recurrencefrequency) | 否   | 否   | 日程重复规则类型 |
Z
z00797030 已提交
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
| expire              | number                                      | 否   | 否   | 日程过期时间     |

## RecurrenceFrequency

日程重复规则类型。

**系统能力**:SystemCapability.Applications.CalendarData

| 名称    | 值   | 说明     |
| ------- | ---- | -------- |
| YEARLY  | 0    | 每年重复 |
| MONTHLY | 1    | 每月重复 |
| WEEKLY  | 2    | 每周重复 |
| DAILY   | 3    | 每天重复 |

## Attendee

日程参与者。

**系统能力**:SystemCapability.Applications.CalendarData

| 名称  | 类型   | 只读 | 必填 | 说明         |
| ----- | ------ | ---- | ---- | ------------ |
| name  | string | 否   | 是   | 参与者的姓名 |
| email | string | 否   | 是   | 参与者的邮箱 |

## EventService

日程服务。

**系统能力**:SystemCapability.Applications.CalendarData

| 名称        | 类型                        | 只读 | 必填 | 说明       |
| ----------- | --------------------------- | ---- | ---- | ---------- |
Z
z00797030 已提交
1198
| type        | [ServiceType](#servicetype) | 否   | 是   | 服务类型   |
Z
z00797030 已提交
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
| uri         | string                      | 否   | 是   | 服务的uri  |
| description | string                      | 否   | 否   | 服务的描述 |

## ServiceType

日程服务类型。

**系统能力**:SystemCapability.Applications.CalendarData

| 名称            | 值             | 说明       |
| --------------- | -------------- | ---------- |
| MEETING         | Meeting        | 一键入会   |
| WATCHING        | Watching       | 一键追剧   |
| REPAYMENT       | Repayment      | 一键还款   |
| LIVE            | Live           | 一键直播   |
| SHOPPING        | Shopping       | 一键购物   |
| TRIP            | Trip           | 一键查看   |
| CLASS           | Class          | 一键上课   |
| SPORTS_EVENTS   | SportsEvents   | 一键看赛事 |
| SPORTS_EXERCISE | SportsExercise | 一键运动   |