js-apis-notification.md 134.1 KB
Newer Older
X
xuchenghua09 已提交
1
# Notification模块
Z
zhaoyuan17 已提交
2

3 4 5 6 7 8
本模块提供通知管理的能力,包括发布、取消发布通知,创建、获取、移除通知通道,订阅、取消订阅通知,获取通知的使能状态、角标使能状态,获取通知的相关信息等。

一般情况下,只有系统应用具有通知订阅和取消订阅的权限。

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

X
xuchenghua09 已提交
11
## 导入模块
Z
zhaoyuan17 已提交
12 13

```js
X
xuchenghua09 已提交
14
import Notification from '@ohos.notification';
Z
zhaoyuan17 已提交
15 16
```

X
xuzhihao 已提交
17
## Notification.publish
Z
zero-cyc 已提交
18

X
xuzhihao 已提交
19
publish(request: NotificationRequest, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
20

X
xuzhihao 已提交
21
发布通知(callback形式)。
Z
zhaoyuan17 已提交
22

X
xuzhihao 已提交
23
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
24

X
xuzhihao 已提交
25
**参数:**
Z
zhaoyuan17 已提交
26

X
xuzhihao 已提交
27 28 29 30
| 名称     | 类型                                        | 必填 | 描述                                        |
| -------- | ------------------------------------------- | ---- | ------------------------------------------- |
| request  | [NotificationRequest](#notificationrequest) | 是   | 设置要发布通知内容的NotificationRequest对象。 |
| callback | AsyncCallback\<void\>                       | 是   | 被指定的回调方法。                            |
Z
zhaoyuan17 已提交
31

X
xuzhihao 已提交
32
**示例:**
Z
zhaoyuan17 已提交
33 34 35 36

```js
//publish回调
function publishCallback(err) {
F
fangJinliang1 已提交
37 38 39 40 41
    if (err.code) {
        console.info("publish failed " + JSON.stringify(err));
    } else {
        console.info("publish success");
    }
Z
zhaoyuan17 已提交
42 43 44 45 46
}
//通知Request对象
var notificationRequest = {
    id: 1,
    content: {
Z
zengsiyu 已提交
47
        contentType: Notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
Z
zhaoyuan17 已提交
48 49 50 51 52 53 54 55 56 57 58 59
        normal: {
            title: "test_title",
            text: "test_text",
            additionalText: "test_additionalText"
        }
    }
}
Notification.publish(notificationRequest, publishCallback)
```



X
xuzhihao 已提交
60
## Notification.publish
Z
zhaoyuan17 已提交
61

X
xuzhihao 已提交
62
publish(request: NotificationRequest): Promise\<void\>
Z
zhaoyuan17 已提交
63

X
xuzhihao 已提交
64
发布通知(Promise形式)。
Z
zhaoyuan17 已提交
65

X
xuzhihao 已提交
66
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
67

X
xuzhihao 已提交
68 69 70 71 72 73
**参数:**

| 名称     | 类型                                        | 必填 | 描述                                        |
| -------- | ------------------------------------------- | ---- | ------------------------------------------- |
| request  | [NotificationRequest](#notificationrequest) | 是   | 设置要发布通知内容的NotificationRequest对象。 |

X
xuzhihao 已提交
74
**示例:**
Z
zhaoyuan17 已提交
75 76 77 78 79 80

```js
//通知Request对象
var notificationRequest = {
    notificationId: 1,
    content: {
Z
zengsiyu 已提交
81
        contentType: Notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
Z
zhaoyuan17 已提交
82 83 84 85 86 87 88
        normal: {
            title: "test_title",
            text: "test_text",
            additionalText: "test_additionalText"
        }
    }
}
Z
zengsiyu 已提交
89
Notification.publish(notificationRequest).then(() => {
F
fangJinliang1 已提交
90
	console.info("publish sucess");
Z
zhaoyuan17 已提交
91 92 93 94
});

```

95 96
## Notification.publish<sup>8+</sup>

X
xuzhihao 已提交
97
publish(request: NotificationRequest, userId: number, callback: AsyncCallback\<void\>): void
98 99 100 101 102

发布通知(callback形式)。

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

X
xuzhihao 已提交
103 104 105
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
106

107 108
**参数:**

X
xuzhihao 已提交
109 110 111 112 113
| 名称     | 类型                                        | 必填 | 描述                                        |
| -------- | ----------------------------------------- | ---- | ------------------------------------------- |
| request  | [NotificationRequest](#notificationrequest) | 是   | 设置要发布通知内容的NotificationRequest对象。 |
| userId   | number                                      | 是   | 接收通知用户的Id。                           |
| callback | AsyncCallback\<void\>                       | 是   | 被指定的回调方法。                           |
114 115 116 117 118 119

**示例:**

```js
//publish回调
function publishCallback(err) {
F
fangJinliang1 已提交
120 121 122 123 124
    if (err.code) {
        console.info("publish failed " + JSON.stringify(err));
    } else {
        console.info("publish success");
    }
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
}
// 接收通知的用户ID
var userId = 1
//通知Request对象
var notificationRequest = {
    id: 1,
    content: {
        contentType: Notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
        normal: {
            title: "test_title",
            text: "test_text",
            additionalText: "test_additionalText"
        }
    }
}
Notification.publish(notificationRequest, userId, publishCallback);
```

## Notification.publish<sup>8+</sup>

X
xuzhihao 已提交
145
publish(request: NotificationRequest, userId: number): Promise\<void\>
146 147 148 149 150

发布通知(Promise形式)。

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

X
xuzhihao 已提交
151 152 153
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
154

155 156
**参数:**

X
xuzhihao 已提交
157 158 159 160
| 名称     |  类型                                        | 必填 | 描述                                        |
| -------- | ----------------------------------------- | ---- | ------------------------------------------- |
| request  | [NotificationRequest](#notificationrequest) | 是   | 设置要发布通知内容的NotificationRequest对象。 |
| userId   | number                                      | 是   | 接收通知用户的Id。                           |
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179

**示例:**

```js
var notificationRequest = {
    notificationId: 1,
    content: {
        contentType: Notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
        normal: {
            title: "test_title",
            text: "test_text",
            additionalText: "test_additionalText"
        }
    }
}

var userId = 1

Notification.publish(notificationRequest, userId).then(() => {
F
fangJinliang1 已提交
180
	console.info("publish sucess");
181 182
});
```
Z
zhaoyuan17 已提交
183 184


X
xuzhihao 已提交
185
## Notification.cancel
Z
zhaoyuan17 已提交
186

X
xuzhihao 已提交
187
cancel(id: number, label: string, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
188

X
xuzhihao 已提交
189
取消与指定id和label相匹配的已发布通知(callback形式)。
Z
zhaoyuan17 已提交
190

X
xuzhihao 已提交
191
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
192

X
xuzhihao 已提交
193
**参数:**
Z
zhaoyuan17 已提交
194

X
xuzhihao 已提交
195 196 197 198 199
| 名称     | 类型                  | 必填 | 描述                 |
| -------- | --------------------- | ---- | -------------------- |
| id       | number                | 是   | 通知ID。               |
| label    | string                | 是   | 通知标签。             |
| callback | AsyncCallback\<void\> | 是   | 表示被指定的回调方法。 |
Z
zhaoyuan17 已提交
200

X
xuzhihao 已提交
201
**示例:**
Z
zhaoyuan17 已提交
202 203 204 205

```js
//cancel回调
function cancelCallback(err) {
F
fangJinliang1 已提交
206 207 208 209 210
    if (err.code) {
        console.info("cancel failed " + JSON.stringify(err));
    } else {
        console.info("cancel success");
    }
Z
zhaoyuan17 已提交
211 212 213 214 215 216
}
Notification.cancel(0, "label", cancelCallback)
```



X
xuzhihao 已提交
217
## Notification.cancel
Z
zhaoyuan17 已提交
218

X
xuzhihao 已提交
219
cancel(id: number, label?: string): Promise\<void\>
Z
zhaoyuan17 已提交
220

R
RayShih 已提交
221
取消与指定id相匹配的已发布通知,label可以指定也可以不指定(Promise形式)。
Z
zhaoyuan17 已提交
222

X
xuzhihao 已提交
223
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
224

X
xuzhihao 已提交
225
**参数:**
Z
zhaoyuan17 已提交
226

X
xuzhihao 已提交
227 228 229 230
| 名称  | 类型   | 必填 | 描述     |
| ----- | ------ | ---- | -------- |
| id    | number | 是   | 通知ID。   |
| label | string | 否   | 通知标签。 |
Z
zhaoyuan17 已提交
231

X
xuzhihao 已提交
232
**示例:**
Z
zhaoyuan17 已提交
233 234

```js
Z
zengsiyu 已提交
235
Notification.cancel(0).then(() => {
F
fangJinliang1 已提交
236
	console.info("cancel sucess");
Z
zhaoyuan17 已提交
237 238 239 240 241
});
```



X
xuzhihao 已提交
242
## Notification.cancel
Z
zhaoyuan17 已提交
243

X
xuzhihao 已提交
244
cancel(id: number, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
245

R
RayShih 已提交
246
取消与指定id相匹配的已发布通知(callback形式)。
Z
zhaoyuan17 已提交
247

X
xuzhihao 已提交
248
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
249

X
xuzhihao 已提交
250
**参数:**
Z
zhaoyuan17 已提交
251

X
xuzhihao 已提交
252 253 254 255
| 名称     | 类型                  | 必填 | 描述                 |
| -------- | --------------------- | ---- | -------------------- |
| id       | number                | 是   | 通知ID。               |
| callback | AsyncCallback\<void\> | 是   | 表示被指定的回调方法。 |
Z
zhaoyuan17 已提交
256

X
xuzhihao 已提交
257
**示例:**
Z
zhaoyuan17 已提交
258 259 260 261

```js
//cancel回调
function cancelCallback(err) {
F
fangJinliang1 已提交
262 263 264 265 266
    if (err.code) {
        console.info("cancel failed " + JSON.stringify(err));
    } else {
        console.info("cancel success");
    }
Z
zhaoyuan17 已提交
267 268 269 270 271 272
}
Notification.cancel(0, cancelCallback)
```



X
xuzhihao 已提交
273
## Notification.cancelAll
Z
zhaoyuan17 已提交
274

X
xuzhihao 已提交
275
cancelAll(callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
276

R
RayShih 已提交
277
取消所有已发布的通知(callback形式)。
Z
zhaoyuan17 已提交
278

X
xuzhihao 已提交
279
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
280

X
xuzhihao 已提交
281
**参数:**
Z
zhaoyuan17 已提交
282

X
xuzhihao 已提交
283 284 285
| 名称     | 类型                  | 必填 | 描述                 |
| -------- | --------------------- | ---- | -------------------- |
| callback | AsyncCallback\<void\> | 是   | 表示被指定的回调方法。 |
Z
zhaoyuan17 已提交
286

X
xuzhihao 已提交
287
**示例:**
Z
zhaoyuan17 已提交
288 289 290

```js
//cancel回调
Z
zengsiyu 已提交
291
function cancelAllCallback(err) {
F
fangJinliang1 已提交
292 293 294 295 296
    if (err.code) {
        console.info("cancelAll failed " + JSON.stringify(err));
    } else {
        console.info("cancelAll success");
    }
Z
zhaoyuan17 已提交
297
}
Z
zengsiyu 已提交
298
Notification.cancelAll(cancelAllCallback)
Z
zhaoyuan17 已提交
299 300 301 302
```



X
xuzhihao 已提交
303
## Notification.cancelAll
Z
zhaoyuan17 已提交
304

X
xuzhihao 已提交
305
cancelAll(): Promise\<void\>
Z
zhaoyuan17 已提交
306

R
RayShih 已提交
307
取消所有已发布的通知(Promise形式)。
Z
zhaoyuan17 已提交
308

X
xuzhihao 已提交
309
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
310

X
xuzhihao 已提交
311
**示例:**
Z
zhaoyuan17 已提交
312 313

```js
Z
zengsiyu 已提交
314
Notification.cancelAll().then(() => {
F
fangJinliang1 已提交
315
	console.info("cancelAll sucess");
Z
zhaoyuan17 已提交
316 317 318 319 320
});
```



X
xuzhihao 已提交
321
## Notification.addSlot
Z
zhaoyuan17 已提交
322

X
xuzhihao 已提交
323
addSlot(slot: NotificationSlot, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
324

R
RayShih 已提交
325
创建通知通道(callback形式)。
Z
zhaoyuan17 已提交
326

X
xuzhihao 已提交
327
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
328

X
xuzhihao 已提交
329 330 331
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
332

X
xuzhihao 已提交
333
**参数:**
Z
zhaoyuan17 已提交
334

X
xuzhihao 已提交
335 336 337 338
| 名称     | 类型                  | 必填 | 描述                 |
| -------- | --------------------- | ---- | -------------------- |
| slot     | [NotificationSlot](#notificationslot)       | 是   | 要创建的通知通道对象。 |
| callback | AsyncCallback\<void\> | 是   | 表示被指定的回调方法。 |
Z
zhaoyuan17 已提交
339

X
xuzhihao 已提交
340
**示例:**
Z
zhaoyuan17 已提交
341 342 343 344

```js
//addslot回调
function addSlotCallBack(err) {
F
fangJinliang1 已提交
345 346 347 348 349
    if (err.code) {
        console.info("addSlot failed " + JSON.stringify(err));
    } else {
        console.info("addSlot success");
    }
Z
zhaoyuan17 已提交
350 351 352
}
//通知slot对象
var notificationSlot = {
X
xuchenghua09 已提交
353
    type: Notification.SlotType.SOCIAL_COMMUNICATION
Z
zhaoyuan17 已提交
354 355 356 357 358 359
}
Notification.addSlot(notificationSlot, addSlotCallBack)
```



X
xuzhihao 已提交
360
## Notification.addSlot
Z
zhaoyuan17 已提交
361

X
xuzhihao 已提交
362
addSlot(slot: NotificationSlot): Promise\<void\>
Z
zhaoyuan17 已提交
363

R
RayShih 已提交
364
创建通知通道(Promise形式)。
Z
zhaoyuan17 已提交
365

X
xuzhihao 已提交
366
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
367

X
xuzhihao 已提交
368 369 370
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
371

X
xuzhihao 已提交
372
**参数:**
Z
zhaoyuan17 已提交
373

X
xuzhihao 已提交
374 375 376
| 名称 | 类型             | 必填 | 描述                 |
| ---- | ---------------- | ---- | -------------------- |
| slot | [NotificationSlot](#notificationslot) | 是   | 要创建的通知通道对象。 |
Z
zhaoyuan17 已提交
377

X
xuzhihao 已提交
378
**示例:**
Z
zhaoyuan17 已提交
379 380 381

```js
//通知slot对象
X
xuchenghua09 已提交
382 383 384
var notificationSlot = {
    type: Notification.SlotType.SOCIAL_COMMUNICATION
}
Z
zengsiyu 已提交
385
Notification.addSlot(notificationSlot).then(() => {
F
fangJinliang1 已提交
386
	console.info("addSlot sucess");
Z
zhaoyuan17 已提交
387 388 389 390 391
});
```



X
xuzhihao 已提交
392
## Notification.addSlot
Z
zhaoyuan17 已提交
393

X
xuzhihao 已提交
394
addSlot(type: SlotType, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
395

R
RayShih 已提交
396
创建通知通道(callback形式)。
Z
zhaoyuan17 已提交
397

X
xuzhihao 已提交
398
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
399

X
xuzhihao 已提交
400
**参数:**
Z
zhaoyuan17 已提交
401

X
xuzhihao 已提交
402 403 404 405
| 名称     | 类型                  | 必填 | 描述                   |
| -------- | --------------------- | ---- | ---------------------- |
| type     | [SlotType](#slottype)              | 是   | 要创建的通知通道的类型。 |
| callback | AsyncCallback\<void\> | 是   | 表示被指定的回调方法。   |
Z
zhaoyuan17 已提交
406

X
xuzhihao 已提交
407
**示例:**
Z
zhaoyuan17 已提交
408 409 410 411

```js
//addslot回调
function addSlotCallBack(err) {
F
fangJinliang1 已提交
412 413 414 415 416
    if (err.code) {
        console.info("addSlot failed " + JSON.stringify(err));
    } else {
        console.info("addSlot success");
    }
Z
zhaoyuan17 已提交
417
}
X
xuchenghua09 已提交
418
Notification.addSlot(Notification.SlotType.SOCIAL_COMMUNICATION, addSlotCallBack)
Z
zhaoyuan17 已提交
419 420 421 422
```



X
xuzhihao 已提交
423
## Notification.addSlot
Z
zhaoyuan17 已提交
424

X
xuzhihao 已提交
425
addSlot(type: SlotType): Promise\<void\>
Z
zhaoyuan17 已提交
426

R
RayShih 已提交
427
创建通知通道(Promise形式)。
Z
zhaoyuan17 已提交
428

X
xuzhihao 已提交
429
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
430

X
xuzhihao 已提交
431
**参数:**
Z
zhaoyuan17 已提交
432

X
xuzhihao 已提交
433 434 435
| 名称 | 类型     | 必填 | 描述                   |
| ---- | -------- | ---- | ---------------------- |
| type | [SlotType](#slottype) | 是   | 要创建的通知通道的类型。 |
Z
zhaoyuan17 已提交
436

X
xuzhihao 已提交
437
**示例:**
Z
zhaoyuan17 已提交
438 439

```js
Z
zengsiyu 已提交
440
Notification.addSlot(Notification.SlotType.SOCIAL_COMMUNICATION).then(() => {
F
fangJinliang1 已提交
441
	console.info("addSlot sucess");
Z
zhaoyuan17 已提交
442 443 444 445 446
});
```



X
xuzhihao 已提交
447
## Notification.addSlots
Z
zhaoyuan17 已提交
448

X
xuzhihao 已提交
449
addSlots(slots: Array\<NotificationSlot\>, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
450

R
RayShih 已提交
451
创建多个通知通道(callback形式)。
Z
zhaoyuan17 已提交
452

X
xuzhihao 已提交
453
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
454

X
xuzhihao 已提交
455 456 457
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
458

X
xuzhihao 已提交
459
**参数:**
Z
zhaoyuan17 已提交
460

X
xuzhihao 已提交
461 462 463 464
| 名称     | 类型                      | 必填 | 描述                     |
| -------- | ------------------------- | ---- | ------------------------ |
| slots    | Array\<[NotificationSlot](#notificationslot)\> | 是   | 要创建的通知通道对象数组。 |
| callback | AsyncCallback\<void\>     | 是   | 表示被指定的回调方法。     |
Z
zhaoyuan17 已提交
465

X
xuzhihao 已提交
466
**示例:**
Z
zhaoyuan17 已提交
467 468 469 470

```js
//addSlots回调
function addSlotsCallBack(err) {
F
fangJinliang1 已提交
471 472 473 474 475
    if (err.code) {
        console.info("addSlots failed " + JSON.stringify(err));
    } else {
        console.info("addSlots success");
    }
Z
zhaoyuan17 已提交
476 477 478
}
//通知slot对象
var notificationSlot = {
X
xuchenghua09 已提交
479
    type: Notification.SlotType.SOCIAL_COMMUNICATION
Z
zhaoyuan17 已提交
480 481
}
//通知slot array 对象
Z
zengsiyu 已提交
482 483
var notificationSlotArray = new Array();
notificationSlotArray[0] = notificationSlot;
Z
zhaoyuan17 已提交
484 485 486 487 488 489

Notification.addSlots(notificationSlotArray, addSlotsCallBack)
```



X
xuzhihao 已提交
490
## Notification.addSlots
Z
zhaoyuan17 已提交
491

X
xuzhihao 已提交
492
addSlots(slots: Array\<NotificationSlot\>): Promise\<void\>
Z
zhaoyuan17 已提交
493

R
RayShih 已提交
494
创建多个通知通道(Promise形式)。
Z
zhaoyuan17 已提交
495

X
xuzhihao 已提交
496
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
497

X
xuzhihao 已提交
498 499 500
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
501

X
xuzhihao 已提交
502
**参数:**
Z
zhaoyuan17 已提交
503

X
xuzhihao 已提交
504 505 506
| 名称  | 类型                      | 必填 | 描述                     |
| ----- | ------------------------- | ---- | ------------------------ |
| slots | Array\<[NotificationSlot](#notificationslot)\> | 是   | 要创建的通知通道对象数组。 |
Z
zhaoyuan17 已提交
507

X
xuzhihao 已提交
508
**示例:**
Z
zhaoyuan17 已提交
509 510 511 512

```js
//通知slot对象
var notificationSlot = {
X
xuchenghua09 已提交
513
    type: Notification.SlotType.SOCIAL_COMMUNICATION
Z
zhaoyuan17 已提交
514 515
}
//通知slot array 对象
Z
zengsiyu 已提交
516 517
var notificationSlotArray = new Array();
notificationSlotArray[0] = notificationSlot;
Z
zhaoyuan17 已提交
518

Z
zengsiyu 已提交
519
Notification.addSlots(notificationSlotArray).then(() => {
F
fangJinliang1 已提交
520
	console.info("addSlots sucess");
Z
zhaoyuan17 已提交
521 522 523 524 525
});
```



X
xuzhihao 已提交
526
## Notification.getSlot
Z
zhaoyuan17 已提交
527

X
xuzhihao 已提交
528
getSlot(slotType: SlotType, callback: AsyncCallback\<NotificationSlot\>): void
Z
zhaoyuan17 已提交
529

R
RayShih 已提交
530
获取一个通知通道(callback形式)。
Z
zhaoyuan17 已提交
531

X
xuzhihao 已提交
532
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
533

X
xuzhihao 已提交
534
**参数:**
Z
zhaoyuan17 已提交
535

X
xuzhihao 已提交
536 537 538 539
| 名称     | 类型                              | 必填 | 描述                                                        |
| -------- | --------------------------------- | ---- | ----------------------------------------------------------- |
| slotType | [SlotType](#slottype)                          | 是   | 通知渠道类型,目前分为社交通信、服务提醒、内容咨询和其他类型。 |
| callback | AsyncCallback\<[NotificationSlot](#notificationslot)\> | 是   | 表示被指定的回调方法。                                        |
Z
zhaoyuan17 已提交
540

X
xuzhihao 已提交
541
**示例:**
Z
zhaoyuan17 已提交
542 543 544 545

```js
//getSlot回调
function getSlotCallback(err,data) {
F
fangJinliang1 已提交
546 547 548 549 550
    if (err.code) {
        console.info("getSlot failed " + JSON.stringify(err));
    } else {
        console.info("getSlot success");
    }
Z
zhaoyuan17 已提交
551
}
X
xuchenghua09 已提交
552
var slotType = Notification.SlotType.SOCIAL_COMMUNICATION;
Z
zhaoyuan17 已提交
553 554 555 556 557
Notification.getSlot(slotType, getSlotCallback)
```



X
xuzhihao 已提交
558
## Notification.getSlot
Z
zhaoyuan17 已提交
559

X
xuzhihao 已提交
560
getSlot(slotType: SlotType): Promise\<NotificationSlot\>
Z
zhaoyuan17 已提交
561

R
RayShih 已提交
562
获取一个通知通道(Promise形式)。
Z
zhaoyuan17 已提交
563

X
xuzhihao 已提交
564
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
565

X
xuzhihao 已提交
566
**参数:**
Z
zhaoyuan17 已提交
567

X
xuzhihao 已提交
568 569 570
| 名称     | 类型     | 必填 | 描述                                                        |
| -------- | -------- | ---- | ----------------------------------------------------------- |
| slotType | [SlotType](#slottype) | 是   | 通知渠道类型,目前分为社交通信、服务提醒、内容咨询和其他类型。 |
Z
zhaoyuan17 已提交
571

X
xuzhihao 已提交
572
**返回值:**
Z
zhaoyuan17 已提交
573

X
xuzhihao 已提交
574 575 576 577 578
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<NotificationSlot\> | 以Promise形式返回获取一个通知通道。 |

**示例:**
Z
zhaoyuan17 已提交
579 580

```js
X
xuchenghua09 已提交
581
var slotType = Notification.SlotType.SOCIAL_COMMUNICATION;
Z
zhaoyuan17 已提交
582
Notification.getSlot(slotType).then((data) => {
F
fangJinliang1 已提交
583
	console.info("getSlot sucess, data: " + JSON.stringify(data));
X
xuchenghua09 已提交
584
});
Z
zhaoyuan17 已提交
585 586 587 588
```



X
xuzhihao 已提交
589
## Notification.getSlots
Z
zhaoyuan17 已提交
590

X
xuzhihao 已提交
591
getSlots(callback: AsyncCallback<Array\<NotificationSlot\>>): void
Z
zhaoyuan17 已提交
592

R
RayShih 已提交
593
获取此应用程序的所有通知通道(callback形式)。
Z
zhaoyuan17 已提交
594

X
xuzhihao 已提交
595
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
596

X
xuzhihao 已提交
597
**参数:**
Z
zhaoyuan17 已提交
598

X
xuzhihao 已提交
599 600 601
| 名称     | 类型                              | 必填 | 描述                 |
| -------- | --------------------------------- | ---- | -------------------- |
| callback | AsyncCallback\<Array\<[NotificationSlot](#notificationslot)\>\> | 是   | 表示被指定的回调方法。 |
Z
zhaoyuan17 已提交
602

X
xuzhihao 已提交
603
**示例:**
Z
zhaoyuan17 已提交
604 605 606 607

```js
//getSlots回调
function getSlotsCallback(err,data) {
F
fangJinliang1 已提交
608 609 610 611 612
    if (err.code) {
        console.info("getSlots failed " + JSON.stringify(err));
    } else {
        console.info("getSlots success");
    }
Z
zhaoyuan17 已提交
613 614 615 616 617 618
}
Notification.getSlots(getSlotsCallback)
```



X
xuzhihao 已提交
619
## Notification.getSlots
Z
zhaoyuan17 已提交
620

X
xuzhihao 已提交
621
getSlots(): Promise\<Array\<NotificationSlot\>>
Z
zhaoyuan17 已提交
622

R
RayShih 已提交
623
获取此应用程序的所有通知通道(Promise形式)。
Z
zhaoyuan17 已提交
624

X
xuzhihao 已提交
625
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
626

X
xuzhihao 已提交
627
**返回值:**
Z
zhaoyuan17 已提交
628

X
xuzhihao 已提交
629 630
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
631
| Promise\<Array\<[NotificationSlot](#notificationslot)\>\> | 以Promise形式返回获取此应用程序的所有通知通道的结果。 |
X
xuezhongzhu 已提交
632

X
xuzhihao 已提交
633
**示例:**
Z
zhaoyuan17 已提交
634 635 636

```js
Notification.getSlots().then((data) => {
F
fangJinliang1 已提交
637
	console.info("getSlots sucess, data: " + JSON.stringify(data));
X
xuchenghua09 已提交
638
});
Z
zhaoyuan17 已提交
639 640 641 642
```



X
xuzhihao 已提交
643
## Notification.removeSlot
Z
zhaoyuan17 已提交
644

X
xuzhihao 已提交
645
removeSlot(slotType: SlotType, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
646

R
RayShih 已提交
647
根据通知通道类型删除创建的通知通道(callback形式)。
Z
zhaoyuan17 已提交
648

X
xuzhihao 已提交
649
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
650

X
xuzhihao 已提交
651
**参数:**
Z
zhaoyuan17 已提交
652

X
xuzhihao 已提交
653 654 655 656
| 名称     | 类型                  | 必填 | 描述                                                        |
| -------- | --------------------- | ---- | ----------------------------------------------------------- |
| slotType | [SlotType](#slottype)              | 是   | 通知渠道类型,目前分为社交通信、服务提醒、内容咨询和其他类型。 |
| callback | AsyncCallback\<void\> | 是   | 表示被指定的回调方法。                                        |
Z
zhaoyuan17 已提交
657

X
xuzhihao 已提交
658
**示例:**
Z
zhaoyuan17 已提交
659 660 661 662

```js
//removeSlot回调
function removeSlotCallback(err) {
F
fangJinliang1 已提交
663 664 665 666 667
    if (err.code) {
        console.info("removeSlot failed " + JSON.stringify(err));
    } else {
        console.info("removeSlot success");
    }
Z
zhaoyuan17 已提交
668
}
X
xuchenghua09 已提交
669
var slotType = Notification.SlotType.SOCIAL_COMMUNICATION;
Z
zhaoyuan17 已提交
670 671 672 673 674
Notification.removeSlot(slotType,removeSlotCallback)
```



X
xuzhihao 已提交
675
## Notification.removeSlot
Z
zhaoyuan17 已提交
676

X
xuzhihao 已提交
677
removeSlot(slotType: SlotType): Promise\<void\>
Z
zhaoyuan17 已提交
678

R
RayShih 已提交
679
根据通知通道类型删除创建的通知通道(Promise形式)。
Z
zhaoyuan17 已提交
680

X
xuzhihao 已提交
681
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
682

X
xuzhihao 已提交
683
**参数:**
Z
zhaoyuan17 已提交
684

X
xuzhihao 已提交
685 686 687
| 名称     | 类型     | 必填 | 描述                                                        |
| -------- | -------- | ---- | ----------------------------------------------------------- |
| slotType | [SlotType](#slottype) | 是   | 通知渠道类型,目前分为社交通信、服务提醒、内容咨询和其他类型。 |
Z
zhaoyuan17 已提交
688

X
xuzhihao 已提交
689
**示例:**
Z
zhaoyuan17 已提交
690 691

```js
X
xuchenghua09 已提交
692
var slotType = Notification.SlotType.SOCIAL_COMMUNICATION;
Z
zengsiyu 已提交
693
Notification.removeSlot(slotType).then(() => {
F
fangJinliang1 已提交
694
	console.info("removeSlot sucess");
X
xuchenghua09 已提交
695
});
Z
zhaoyuan17 已提交
696 697 698 699
```



X
xuzhihao 已提交
700
## Notification.removeAllSlots
Z
zhaoyuan17 已提交
701

X
xuzhihao 已提交
702
removeAllSlots(callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
703

R
RayShih 已提交
704
删除所有通知通道(callback形式)。
Z
zhaoyuan17 已提交
705

X
xuzhihao 已提交
706
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
707

X
xuzhihao 已提交
708
**参数:**
Z
zhaoyuan17 已提交
709

X
xuzhihao 已提交
710 711 712
| 名称     | 类型                  | 必填 | 描述                 |
| -------- | --------------------- | ---- | -------------------- |
| callback | AsyncCallback\<void\> | 是   | 表示被指定的回调方法。 |
Z
zhaoyuan17 已提交
713

X
xuzhihao 已提交
714
**示例:**
Z
zhaoyuan17 已提交
715 716 717

```js
function removeAllCallBack(err) {
F
fangJinliang1 已提交
718 719 720 721 722
    if (err.code) {
        console.info("removeAllSlots failed " + JSON.stringify(err));
    } else {
        console.info("removeAllSlots success");
    }
Z
zhaoyuan17 已提交
723 724 725 726 727 728
}
Notification.removeAllSlots(removeAllCallBack)
```



X
xuzhihao 已提交
729
## Notification.removeAllSlots
Z
zhaoyuan17 已提交
730

X
xuzhihao 已提交
731
removeAllSlots(): Promise\<void\>
Z
zhaoyuan17 已提交
732

R
RayShih 已提交
733
删除所有通知通道(Promise形式)。
Z
zhaoyuan17 已提交
734

X
xuzhihao 已提交
735
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
736

X
xuzhihao 已提交
737
**示例:**
Z
zhaoyuan17 已提交
738 739

```js
Z
zengsiyu 已提交
740
Notification.removeAllSlots().then(() => {
F
fangJinliang1 已提交
741
	console.info("removeAllSlots sucess");
Z
zhaoyuan17 已提交
742 743 744 745 746
});
```



X
xuzhihao 已提交
747
## Notification.subscribe
Z
zhaoyuan17 已提交
748

X
xuzhihao 已提交
749
subscribe(subscriber: NotificationSubscriber, info: NotificationSubscribeInfo, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
750

R
RayShih 已提交
751
订阅通知并指定订阅信息(callback形式)。
Z
zhaoyuan17 已提交
752

X
xuzhihao 已提交
753
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
754

X
xuzhihao 已提交
755 756 757
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
758

X
xuzhihao 已提交
759
**参数:**
Z
zhaoyuan17 已提交
760

X
xuzhihao 已提交
761 762 763 764 765
| 名称       | 类型                      | 必填 | 描述             |
| ---------- | ------------------------- | ---- | ---------------- |
| subscriber | [NotificationSubscriber](#notificationsubscriber)    | 是   | 通知订阅对象。     |
| info       | [NotificationSubscribeInfo](#notificationsubscribeinfo) | 是   | 订阅信息。         |
| callback   | AsyncCallback\<void\>     | 是   | 订阅动作回调函数。 |
Z
zhaoyuan17 已提交
766

X
xuzhihao 已提交
767
**示例:**
Z
zhaoyuan17 已提交
768 769 770 771

```js
//subscribe回调
function subscribeCallback(err) {
F
fangJinliang1 已提交
772 773 774 775 776
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribe success");
    }
Z
zhaoyuan17 已提交
777
}
778
function onConsumeCallback(data) {
F
fangJinliang1 已提交
779
	console.info("Consume callback: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
780 781
}
var subscriber = {
X
xuchenghua09 已提交
782
    onConsume: onConsumeCallback
Z
zhaoyuan17 已提交
783 784
}
var info = {
X
xuchenghua09 已提交
785
    bundleNames: ["bundleName1","bundleName2"]
Z
zhaoyuan17 已提交
786 787 788 789 790 791
}
Notification.subscribe(subscriber, info, subscribeCallback);
```



X
xuzhihao 已提交
792
## Notification.subscribe
Z
zhaoyuan17 已提交
793

X
xuzhihao 已提交
794
subscribe(subscriber: NotificationSubscriber, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
795

R
RayShih 已提交
796
订阅通知并指定订阅信息(callback形式)。
Z
zhaoyuan17 已提交
797

X
xuzhihao 已提交
798
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
799

X
xuzhihao 已提交
800 801 802
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
803

X
xuzhihao 已提交
804
**参数:**
Z
zhaoyuan17 已提交
805

X
xuzhihao 已提交
806 807 808 809
| 名称       | 类型                   | 必填 | 描述             |
| ---------- | ---------------------- | ---- | ---------------- |
| subscriber | [NotificationSubscriber](#notificationsubscriber) | 是   | 通知订阅对象。     |
| callback   | AsyncCallback\<void\>  | 是   | 订阅动作回调函数。 |
Z
zhaoyuan17 已提交
810

X
xuzhihao 已提交
811
**示例:**
Z
zhaoyuan17 已提交
812 813 814

```js
function subscribeCallback(err) {
F
fangJinliang1 已提交
815 816 817 818 819
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribe success");
    }
Z
zhaoyuan17 已提交
820
}
821
function onConsumeCallback(data) {
F
fangJinliang1 已提交
822
	console.info("Consume callback: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
823 824
}
var subscriber = {
X
xuchenghua09 已提交
825
    onConsume: onConsumeCallback
Z
zhaoyuan17 已提交
826 827 828 829 830 831
}
Notification.subscribe(subscriber, subscribeCallback);
```



X
xuzhihao 已提交
832
## Notification.subscribe
Z
zhaoyuan17 已提交
833

X
xuzhihao 已提交
834
subscribe(subscriber: NotificationSubscriber, info?: NotificationSubscribeInfo): Promise\<void\>
Z
zhaoyuan17 已提交
835

R
RayShih 已提交
836
订阅通知并指定订阅信息(Promise形式)。
Z
zhaoyuan17 已提交
837

X
xuzhihao 已提交
838
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
839

X
xuzhihao 已提交
840 841 842
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
843

X
xuzhihao 已提交
844
**参数:**
Z
zhaoyuan17 已提交
845

X
xuzhihao 已提交
846 847 848 849
| 名称       | 类型                      | 必填 | 描述         |
| ---------- | ------------------------- | ---- | ------------ |
| subscriber | [NotificationSubscriber](#notificationsubscriber)    | 是   | 通知订阅对象。 |
| info       | [NotificationSubscribeInfo](#notificationsubscribeinfo) | 否   | 订阅信息。     |
Z
zhaoyuan17 已提交
850

X
xuzhihao 已提交
851
**示例:**
Z
zhaoyuan17 已提交
852 853

```js
854
function onConsumeCallback(data) {
F
fangJinliang1 已提交
855 856 857 858 859
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribe success");
    }
Z
zhaoyuan17 已提交
860 861
}
var subscriber = {
X
xuchenghua09 已提交
862
    onConsume: onConsumeCallback
Z
zhaoyuan17 已提交
863
};
Z
zengsiyu 已提交
864
Notification.subscribe(subscriber).then(() => {
F
fangJinliang1 已提交
865
	console.info("subscribe sucess");
Z
zhaoyuan17 已提交
866 867 868 869 870
});
```



X
xuzhihao 已提交
871
## Notification.unsubscribe
Z
zhaoyuan17 已提交
872

X
xuzhihao 已提交
873
unsubscribe(subscriber: NotificationSubscriber, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
874

R
RayShih 已提交
875
取消订阅(callbcak形式)。
Z
zhaoyuan17 已提交
876

X
xuzhihao 已提交
877
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
878

X
xuzhihao 已提交
879 880 881
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
882

X
xuzhihao 已提交
883
**参数:**
Z
zhaoyuan17 已提交
884

X
xuzhihao 已提交
885 886 887 888
| 名称       | 类型                   | 必填 | 描述                 |
| ---------- | ---------------------- | ---- | -------------------- |
| subscriber | [NotificationSubscriber](#notificationsubscriber) | 是   | 通知订阅对象。         |
| callback   | AsyncCallback\<void\>  | 是   | 取消订阅动作回调函数。 |
Z
zhaoyuan17 已提交
889

X
xuzhihao 已提交
890
**示例:**
Z
zhaoyuan17 已提交
891 892 893

```js
function unsubscribeCallback(err) {
F
fangJinliang1 已提交
894 895 896 897 898
    if (err.code) {
        console.info("unsubscribe failed " + JSON.stringify(err));
    } else {
        console.info("unsubscribe success");
    }
Z
zhaoyuan17 已提交
899
}
F
fangJinliang1 已提交
900 901
function onCancelCallback(data) {
	console.info("Cancel callback: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
902 903
}
var subscriber = {
F
fangJinliang1 已提交
904
    onCancel: onCancelCallback
Z
zhaoyuan17 已提交
905 906 907 908 909 910
}
Notification.unsubscribe(subscriber, unsubscribeCallback);
```



X
xuzhihao 已提交
911
## Notification.unsubscribe
Z
zhaoyuan17 已提交
912

X
xuzhihao 已提交
913
unsubscribe(subscriber: NotificationSubscriber): Promise\<void\>
Z
zhaoyuan17 已提交
914

R
RayShih 已提交
915
取消订阅(Promise形式)。
Z
zhaoyuan17 已提交
916

X
xuzhihao 已提交
917
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
918

X
xuzhihao 已提交
919 920 921
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
922

X
xuzhihao 已提交
923
**参数:**
Z
zhaoyuan17 已提交
924

X
xuzhihao 已提交
925 926 927
| 名称       | 类型                   | 必填 | 描述         |
| ---------- | ---------------------- | ---- | ------------ |
| subscriber | [NotificationSubscriber](#notificationsubscriber) | 是   | 通知订阅对象。 |
Z
zhaoyuan17 已提交
928

X
xuzhihao 已提交
929
**示例:**
Z
zhaoyuan17 已提交
930 931

```js
F
fangJinliang1 已提交
932 933
function onCancelCallback(data) {
	console.info("Cancel callback: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
934 935
}
var subscriber = {
F
fangJinliang1 已提交
936
    onCancel: onCancelCallback
Z
zhaoyuan17 已提交
937
};
Z
zengsiyu 已提交
938
Notification.unsubscribe(subscriber).then(() => {
F
fangJinliang1 已提交
939
	console.info("unsubscribe sucess");
Z
zhaoyuan17 已提交
940 941 942 943 944
});
```



X
xuzhihao 已提交
945
## Notification.enableNotification
Z
zhaoyuan17 已提交
946

X
xuzhihao 已提交
947
enableNotification(bundle: BundleOption, enable: boolean, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
948

R
RayShih 已提交
949
设定指定包的通知使能状态(Callback形式)。
Z
zhaoyuan17 已提交
950

X
xuzhihao 已提交
951
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
952

X
xuzhihao 已提交
953 954 955
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
956

X
xuzhihao 已提交
957
**参数:**
Z
zhaoyuan17 已提交
958

X
xuzhihao 已提交
959 960 961 962 963
| 名称     | 类型                  | 必填 | 描述                 |
| -------- | --------------------- | ---- | -------------------- |
| bundle   | [BundleOption](#bundleoption)          | 是   | 指定包信息。           |
| enable   | boolean               | 是   | 使能状态。             |
| callback | AsyncCallback\<void\> | 是   | 设定通知使能回调函数。 |
Z
zhaoyuan17 已提交
964

X
xuzhihao 已提交
965
**示例:**
Z
zhaoyuan17 已提交
966 967 968

```js
function enableNotificationCallback(err) {
F
fangJinliang1 已提交
969 970 971 972 973
    if (err.code) {
        console.info("enableNotification failed " + JSON.stringify(err));
    } else {
        console.info("enableNotification success");
    }
Z
zhaoyuan17 已提交
974 975
}
var bundle = {
Z
zengsiyu 已提交
976
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
977 978 979 980 981 982
}
Notification.enableNotification(bundle, false, enableNotificationCallback);
```



X
xuzhihao 已提交
983
## Notification.enableNotification
Z
zhaoyuan17 已提交
984

X
xuzhihao 已提交
985
enableNotification(bundle: BundleOption, enable: boolean): Promise\<void\>
Z
zhaoyuan17 已提交
986

R
RayShih 已提交
987
设定指定包的通知使能状态(Promise形式)。
Z
zhaoyuan17 已提交
988

X
xuzhihao 已提交
989
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
990

X
xuzhihao 已提交
991 992 993
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
994

X
xuzhihao 已提交
995
**参数:**
Z
zhaoyuan17 已提交
996

X
xuzhihao 已提交
997 998 999 1000
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| bundle | [BundleOption](#bundleoption) | 是   | 指定包信息。 |
| enable | boolean      | 是   | 使能状态。   |
Z
zhaoyuan17 已提交
1001

X
xuzhihao 已提交
1002
**示例:**
Z
zhaoyuan17 已提交
1003 1004 1005

```js
var bundle = {
Z
zengsiyu 已提交
1006
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1007
}
Z
zengsiyu 已提交
1008
Notification.enableNotification(bundle, false).then(() => {
F
fangJinliang1 已提交
1009
	console.info("enableNotification sucess");
Z
zhaoyuan17 已提交
1010 1011 1012 1013 1014
});
```



X
xuzhihao 已提交
1015
## Notification.isNotificationEnabled
Z
zhaoyuan17 已提交
1016

X
xuzhihao 已提交
1017
isNotificationEnabled(bundle: BundleOption, callback: AsyncCallback\<boolean\>): void
Z
zhaoyuan17 已提交
1018

R
RayShih 已提交
1019
获取指定包的通知使能状态(Callback形式)。
Z
zhaoyuan17 已提交
1020

X
xuzhihao 已提交
1021
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1022

1023 1024
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
1025 1026
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

X
xuzhihao 已提交
1027
**参数:**
Z
zhaoyuan17 已提交
1028

X
xuzhihao 已提交
1029 1030 1031 1032
| 名称     | 类型                  | 必填 | 描述                     |
| -------- | --------------------- | ---- | ------------------------ |
| bundle   | [BundleOption](#bundleoption)          | 是   | 指定包信息。               |
| callback | AsyncCallback\<void\> | 是   | 获取通知使能状态回调函数。 |
Z
zhaoyuan17 已提交
1033

X
xuzhihao 已提交
1034
**示例:**
Z
zhaoyuan17 已提交
1035 1036 1037

```js
function isNotificationEnabledCallback(err, data) {
F
fangJinliang1 已提交
1038 1039 1040 1041 1042
    if (err.code) {
        console.info("isNotificationEnabled failed " + JSON.stringify(err));
    } else {
        console.info("isNotificationEnabled success");
    }
Z
zhaoyuan17 已提交
1043 1044
}
var bundle = {
Z
zengsiyu 已提交
1045
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1046 1047 1048 1049 1050 1051
}
Notification.isNotificationEnabled(bundle, isNotificationEnabledCallback);
```



X
xuzhihao 已提交
1052 1053 1054
## Notification.isNotificationEnabled

isNotificationEnabled(bundle: BundleOption): Promise\<boolean\>
Z
zhaoyuan17 已提交
1055

R
RayShih 已提交
1056
获取指定包的通知使能状态(Promise形式)。
Z
zhaoyuan17 已提交
1057

X
xuzhihao 已提交
1058
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1059

X
xuzhihao 已提交
1060 1061 1062
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1063

X
xuzhihao 已提交
1064
**参数:**
Z
zhaoyuan17 已提交
1065

X
xuzhihao 已提交
1066 1067 1068
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| bundle | [BundleOption](#bundleoption) | 是   | 指定包信息。 |
Z
zhaoyuan17 已提交
1069

X
xuzhihao 已提交
1070
**返回值:**
Z
zhaoyuan17 已提交
1071

X
xuzhihao 已提交
1072 1073 1074
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<boolean\> | 以Promise形式返回获取指定包的通知使能状态的结果。 |
Z
zhaoyuan17 已提交
1075

X
xuzhihao 已提交
1076
**示例:**
Z
zhaoyuan17 已提交
1077 1078 1079

```js
var bundle = {
Z
zengsiyu 已提交
1080
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1081 1082
}
Notification.isNotificationEnabled(bundle).then((data) => {
F
fangJinliang1 已提交
1083
	console.info("isNotificationEnabled sucess, data: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
1084 1085 1086 1087 1088
});
```



X
xuzhihao 已提交
1089
## Notification.isNotificationEnabled
Z
zhaoyuan17 已提交
1090

X
xuzhihao 已提交
1091
isNotificationEnabled(callback: AsyncCallback\<boolean\>): void
Z
zhaoyuan17 已提交
1092

R
RayShih 已提交
1093
获取通知使能状态(Callback形式)。
Z
zhaoyuan17 已提交
1094

X
xuzhihao 已提交
1095
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1096

X
xuzhihao 已提交
1097 1098 1099
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1100

X
xuzhihao 已提交
1101
**参数:**
Z
zhaoyuan17 已提交
1102

X
xuzhihao 已提交
1103 1104 1105
| 名称     | 类型                  | 必填 | 描述                     |
| -------- | --------------------- | ---- | ------------------------ |
| callback | AsyncCallback\<void\> | 是   | 获取通知使能状态回调函数。 |
Z
zhaoyuan17 已提交
1106

X
xuzhihao 已提交
1107
**示例:**
Z
zhaoyuan17 已提交
1108 1109 1110

```js
function isNotificationEnabledCallback(err, data) {
F
fangJinliang1 已提交
1111 1112 1113 1114 1115
    if (err.code) {
        console.info("isNotificationEnabled failed " + JSON.stringify(err));
    } else {
        console.info("isNotificationEnabled success");
    }
Z
zhaoyuan17 已提交
1116 1117 1118 1119 1120 1121 1122
}

Notification.isNotificationEnabled(isNotificationEnabledCallback);
```



X
xuzhihao 已提交
1123 1124 1125
## Notification.isNotificationEnabled

isNotificationEnabled(): Promise\<boolean\>
Z
zhaoyuan17 已提交
1126

R
RayShih 已提交
1127
获取通知使能状态(Promise形式)。
Z
zhaoyuan17 已提交
1128

X
xuzhihao 已提交
1129
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1130

X
xuzhihao 已提交
1131 1132 1133
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1134

X
xuzhihao 已提交
1135
**参数:**
Z
zhaoyuan17 已提交
1136

X
xuzhihao 已提交
1137 1138 1139
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| bundle | [BundleOption](#bundleoption) | 是   | 指定包信息。 |
Z
zhaoyuan17 已提交
1140

X
xuzhihao 已提交
1141
**返回值:**
Z
zhaoyuan17 已提交
1142

X
xuzhihao 已提交
1143 1144 1145
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<boolean\> | 以Promise形式返回获取通知使能状态的结果。 |
Z
zhaoyuan17 已提交
1146

X
xuzhihao 已提交
1147
**示例:**
Z
zhaoyuan17 已提交
1148 1149 1150

```js
Notification.isNotificationEnabled().then((data) => {
F
fangJinliang1 已提交
1151
	console.info("isNotificationEnabled sucess, data: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
1152 1153 1154 1155 1156
});
```



X
xuzhihao 已提交
1157
## Notification.displayBadge
Z
zhaoyuan17 已提交
1158

X
xuzhihao 已提交
1159
displayBadge(bundle: BundleOption, enable: boolean, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
1160

R
RayShih 已提交
1161
设定指定包的角标使能状态(Callback形式)。
Z
zhaoyuan17 已提交
1162

X
xuzhihao 已提交
1163
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1164

X
xuzhihao 已提交
1165 1166 1167
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1168

X
xuzhihao 已提交
1169
**参数:**
Z
zhaoyuan17 已提交
1170

X
xuzhihao 已提交
1171 1172 1173 1174 1175
| 名称     | 类型                  | 必填 | 描述                 |
| -------- | --------------------- | ---- | -------------------- |
| bundle   | [BundleOption](#bundleoption)          | 是   | 指定包信息。           |
| enable   | boolean               | 是   | 使能状态。             |
| callback | AsyncCallback\<void\> | 是   | 设定角标使能回调函数。 |
Z
zhaoyuan17 已提交
1176

X
xuzhihao 已提交
1177
**示例:**
Z
zhaoyuan17 已提交
1178 1179 1180

```js
function displayBadgeCallback(err) {
F
fangJinliang1 已提交
1181 1182 1183 1184 1185
    if (err.code) {
        console.info("displayBadge failed " + JSON.stringify(err));
    } else {
        console.info("displayBadge success");
    }
Z
zhaoyuan17 已提交
1186 1187
}
var bundle = {
Z
zengsiyu 已提交
1188
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1189 1190 1191 1192 1193 1194
}
Notification.displayBadge(bundle, false, displayBadgeCallback);
```



X
xuzhihao 已提交
1195
## Notification.displayBadge
Z
zhaoyuan17 已提交
1196

X
xuzhihao 已提交
1197
displayBadge(bundle: BundleOption, enable: boolean): Promise\<void\>
Z
zhaoyuan17 已提交
1198

R
RayShih 已提交
1199
设定指定包的角标使能状态(Promise形式)。
Z
zhaoyuan17 已提交
1200

X
xuzhihao 已提交
1201
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1202

X
xuzhihao 已提交
1203 1204 1205
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1206

X
xuzhihao 已提交
1207
**参数:**
Z
zhaoyuan17 已提交
1208

X
xuzhihao 已提交
1209 1210 1211 1212
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| bundle | [BundleOption](#bundleoption) | 是   | 指定包信息。 |
| enable | boolean      | 是   | 使能状态。   |
Z
zhaoyuan17 已提交
1213

X
xuzhihao 已提交
1214
**示例:**
Z
zhaoyuan17 已提交
1215 1216 1217

```js
var bundle = {
Z
zengsiyu 已提交
1218
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1219
}
Z
zengsiyu 已提交
1220
Notification.displayBadge(bundle, false).then(() => {
F
fangJinliang1 已提交
1221
	console.info("displayBadge sucess");
Z
zhaoyuan17 已提交
1222 1223 1224 1225 1226
});
```



X
xuzhihao 已提交
1227
## Notification.isBadgeDisplayed
Z
zhaoyuan17 已提交
1228

X
xuzhihao 已提交
1229
isBadgeDisplayed(bundle: BundleOption, callback: AsyncCallback\<boolean\>): void
Z
zhaoyuan17 已提交
1230

R
RayShih 已提交
1231
获取指定包的角标使能状态(Callback形式)。
Z
zhaoyuan17 已提交
1232

X
xuzhihao 已提交
1233
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1234

X
xuzhihao 已提交
1235 1236 1237
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1238

X
xuzhihao 已提交
1239
**参数:**
Z
zhaoyuan17 已提交
1240

X
xuzhihao 已提交
1241 1242 1243 1244
| 名称     | 类型                  | 必填 | 描述                     |
| -------- | --------------------- | ---- | ------------------------ |
| bundle   | [BundleOption](#bundleoption)          | 是   | 指定包信息。               |
| callback | AsyncCallback\<void\> | 是   | 获取角标使能状态回调函数。 |
Z
zhaoyuan17 已提交
1245

X
xuzhihao 已提交
1246
**示例:**
Z
zhaoyuan17 已提交
1247 1248 1249

```js
function isBadgeDisplayedCallback(err, data) {
F
fangJinliang1 已提交
1250 1251 1252 1253 1254
    if (err.code) {
        console.info("isBadgeDisplayed failed " + JSON.stringify(err));
    } else {
        console.info("isBadgeDisplayed success");
    }
Z
zhaoyuan17 已提交
1255 1256
}
var bundle = {
Z
zengsiyu 已提交
1257
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1258 1259 1260 1261 1262 1263
}
Notification.isBadgeDisplayed(bundle, isBadgeDisplayedCallback);
```



X
xuzhihao 已提交
1264
## Notification.isBadgeDisplayed
Z
zhaoyuan17 已提交
1265

X
xuzhihao 已提交
1266
isBadgeDisplayed(bundle: BundleOption): Promise\<boolean\>
Z
zhaoyuan17 已提交
1267

R
RayShih 已提交
1268
获取指定包的角标使能状态(Promise形式)。
Z
zhaoyuan17 已提交
1269

X
xuzhihao 已提交
1270
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1271

X
xuzhihao 已提交
1272 1273 1274
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1275

X
xuzhihao 已提交
1276
**参数:**
Z
zhaoyuan17 已提交
1277

X
xuzhihao 已提交
1278 1279 1280
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| bundle | [BundleOption](#bundleoption) | 是   | 指定包信息。 |
Z
zhaoyuan17 已提交
1281

X
xuzhihao 已提交
1282
**返回值:**
Z
zhaoyuan17 已提交
1283

X
xuzhihao 已提交
1284 1285 1286 1287 1288
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<boolean\> | 以Promise形式返回获取指定包的角标使能状态。 |

**示例:**
Z
zhaoyuan17 已提交
1289 1290 1291

```js
var bundle = {
Z
zengsiyu 已提交
1292
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1293 1294
}
Notification.isBadgeDisplayed(bundle).then((data) => {
F
fangJinliang1 已提交
1295
	console.info("isBadgeDisplayed sucess, data: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
1296 1297 1298 1299 1300
});
```



X
xuzhihao 已提交
1301
## Notification.setSlotByBundle
Z
zhaoyuan17 已提交
1302

X
xuzhihao 已提交
1303
setSlotByBundle(bundle: BundleOption, slot: NotificationSlot, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
1304

R
RayShih 已提交
1305
设定指定包的通知通道状态(Callback形式)。
Z
zhaoyuan17 已提交
1306

X
xuzhihao 已提交
1307
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1308

X
xuzhihao 已提交
1309 1310 1311
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1312

X
xuzhihao 已提交
1313
**参数:**
Z
zhaoyuan17 已提交
1314

X
xuzhihao 已提交
1315 1316 1317 1318 1319
| 名称     | 类型                  | 必填 | 描述                 |
| -------- | --------------------- | ---- | -------------------- |
| bundle   | [BundleOption](#bundleoption)          | 是   | 指定包信息。           |
| slot     | [NotificationSlot](#notificationslot)      | 是   | 通知通道。             |
| callback | AsyncCallback\<void\> | 是   | 设定通知通道回调函数。 |
Z
zhaoyuan17 已提交
1320

X
xuzhihao 已提交
1321
**示例:**
Z
zhaoyuan17 已提交
1322 1323 1324

```js
function setSlotByBundleCallback(err) {
F
fangJinliang1 已提交
1325 1326 1327 1328 1329
    if (err.code) {
        console.info("setSlotByBundle failed " + JSON.stringify(err));
    } else {
        console.info("setSlotByBundle success");
    }
Z
zhaoyuan17 已提交
1330 1331
}
var bundle = {
Z
zengsiyu 已提交
1332
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1333 1334
}
var notificationSlot = {
X
xuchenghua09 已提交
1335
    type: Notification.SlotType.SOCIAL_COMMUNICATION
Z
zhaoyuan17 已提交
1336 1337 1338 1339 1340 1341
}
Notification.setSlotByBundle(bundle, notificationSlot, setSlotByBundleCallback);
```



X
xuzhihao 已提交
1342
## Notification.setSlotByBundle
Z
zhaoyuan17 已提交
1343

X
xuzhihao 已提交
1344
setSlotByBundle(bundle: BundleOption, slot: NotificationSlot): Promise\<void\>
Z
zhaoyuan17 已提交
1345

F
fangjinliang 已提交
1346
设定指定包的通知通道状态(Promise形式)。
Z
zhaoyuan17 已提交
1347

X
xuzhihao 已提交
1348
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1349

X
xuzhihao 已提交
1350 1351 1352
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1353

X
xuzhihao 已提交
1354
**参数:**
Z
zhaoyuan17 已提交
1355

X
xuzhihao 已提交
1356 1357 1358 1359
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| bundle | [BundleOption](#bundleoption) | 是   | 指定包信息。 |
| slot   | [NotificationSlot](#notificationslot) | 是   | 使能状态。   |
Z
zhaoyuan17 已提交
1360

X
xuzhihao 已提交
1361
**示例:**
Z
zhaoyuan17 已提交
1362 1363 1364

```js
var bundle = {
Z
zengsiyu 已提交
1365
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1366 1367
}
var notificationSlot = {
X
xuchenghua09 已提交
1368
    type: Notification.SlotType.SOCIAL_COMMUNICATION
Z
zhaoyuan17 已提交
1369
}
1370
Notification.setSlotByBundle(bundle, notificationSlot).then(() => {
F
fangJinliang1 已提交
1371
	console.info("setSlotByBundle sucess");
Z
zhaoyuan17 已提交
1372 1373 1374 1375 1376
});
```



X
xuzhihao 已提交
1377
## Notification.getSlotsByBundle
Z
zhaoyuan17 已提交
1378

X
xuzhihao 已提交
1379
getSlotsByBundle(bundle: BundleOption, callback: AsyncCallback<Array\<NotificationSlot\>>): void
Z
zhaoyuan17 已提交
1380

R
RayShih 已提交
1381
获取指定包的通知通道(Callback形式)。
Z
zhaoyuan17 已提交
1382

X
xuzhihao 已提交
1383
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1384

X
xuzhihao 已提交
1385 1386 1387
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1388

X
xuzhihao 已提交
1389
**参数:**
Z
zhaoyuan17 已提交
1390

X
xuzhihao 已提交
1391 1392 1393 1394
| 名称     | 类型                                     | 必填 | 描述                 |
| -------- | ---------------------------------------- | ---- | -------------------- |
| bundle   | [BundleOption](#bundleoption)                             | 是   | 指定包信息。           |
| callback | AsyncCallback<Array\<[NotificationSlot](#notificationslot)\>> | 是   | 获取通知通道回调函数。 |
Z
zhaoyuan17 已提交
1395

X
xuzhihao 已提交
1396
**示例:**
Z
zhaoyuan17 已提交
1397 1398 1399

```js
function getSlotsByBundleCallback(err, data) {
F
fangJinliang1 已提交
1400 1401 1402 1403 1404
    if (err.code) {
        console.info("getSlotsByBundle failed " + JSON.stringify(err));
    } else {
        console.info("getSlotsByBundle success");
    }
Z
zhaoyuan17 已提交
1405 1406
}
var bundle = {
Z
zengsiyu 已提交
1407
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1408 1409 1410 1411 1412 1413
}
Notification.getSlotsByBundle(bundle, getSlotsByBundleCallback);
```



X
xuzhihao 已提交
1414
## Notification.getSlotsByBundle
Z
zhaoyuan17 已提交
1415

X
xuzhihao 已提交
1416
getSlotsByBundle(bundle: BundleOption): Promise<Array\<NotificationSlot\>>
Z
zhaoyuan17 已提交
1417

R
RayShih 已提交
1418
获取指定包的通知通道(Promise形式)。
Z
zhaoyuan17 已提交
1419

X
xuzhihao 已提交
1420
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1421

X
xuzhihao 已提交
1422 1423 1424
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1425

X
xuzhihao 已提交
1426
**参数:**
Z
zhaoyuan17 已提交
1427

X
xuzhihao 已提交
1428 1429 1430
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| bundle | [BundleOption](#bundleoption) | 是   | 指定包信息。 |
Z
zhaoyuan17 已提交
1431

X
xuzhihao 已提交
1432
**返回值:**
Z
zhaoyuan17 已提交
1433

X
xuzhihao 已提交
1434 1435
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
1436
| Promise<Array\<[NotificationSlot](#notificationslot)\>> | 以Promise形式返回获取指定包的通知通道。 |
X
xuzhihao 已提交
1437 1438

**示例:**
Z
zhaoyuan17 已提交
1439 1440 1441

```js
var bundle = {
Z
zengsiyu 已提交
1442
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1443 1444
}
Notification.getSlotsByBundle(bundle).then((data) => {
F
fangJinliang1 已提交
1445
	console.info("getSlotsByBundle sucess, data: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
1446 1447 1448 1449 1450
});
```



X
xuzhihao 已提交
1451
## Notification.getSlotNumByBundle
Z
zhaoyuan17 已提交
1452

X
xuzhihao 已提交
1453
getSlotNumByBundle(bundle: BundleOption, callback: AsyncCallback\<number\>): void
Z
zhaoyuan17 已提交
1454

R
RayShih 已提交
1455
获取指定包的通知通道数(Callback形式)。
Z
zhaoyuan17 已提交
1456

X
xuzhihao 已提交
1457
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1458

X
xuzhihao 已提交
1459 1460 1461
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1462

X
xuzhihao 已提交
1463
**参数:**
Z
zhaoyuan17 已提交
1464

X
xuzhihao 已提交
1465 1466 1467 1468
| 名称     | 类型                      | 必填 | 描述                   |
| -------- | ------------------------- | ---- | ---------------------- |
| bundle   | [BundleOption](#bundleoption)              | 是   | 指定包信息。             |
| callback | AsyncCallback\<number\> | 是   | 获取通知通道数回调函数。 |
Z
zhaoyuan17 已提交
1469

X
xuzhihao 已提交
1470
**示例:**
Z
zhaoyuan17 已提交
1471 1472

```js
1473
function getSlotNumByBundleCallback(err, data) {
F
fangJinliang1 已提交
1474 1475 1476 1477 1478
    if (err.code) {
        console.info("getSlotNumByBundle failed " + JSON.stringify(err));
    } else {
        console.info("getSlotNumByBundle success");
    }
Z
zhaoyuan17 已提交
1479 1480
}
var bundle = {
Z
zengsiyu 已提交
1481
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1482 1483 1484 1485 1486 1487
}
Notification.getSlotNumByBundle(bundle, getSlotNumByBundleCallback);
```



X
xuzhihao 已提交
1488 1489 1490
## Notification.getSlotNumByBundle

getSlotNumByBundle(bundle: BundleOption): Promise\<number\>
Z
zhaoyuan17 已提交
1491

R
RayShih 已提交
1492
获取指定包的通知通道数(Promise形式)。
Z
zhaoyuan17 已提交
1493

X
xuzhihao 已提交
1494
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1495

X
xuzhihao 已提交
1496 1497 1498
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1499

X
xuzhihao 已提交
1500
**参数:**
Z
zhaoyuan17 已提交
1501

X
xuzhihao 已提交
1502 1503 1504
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| bundle | [BundleOption](#bundleoption) | 是   | 指定包信息。 |
Z
zhaoyuan17 已提交
1505

X
xuzhihao 已提交
1506
**返回值:**
Z
zhaoyuan17 已提交
1507

X
xuzhihao 已提交
1508 1509 1510
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<number\> | 以Promise形式返回获取指定包的通知通道数。 |
Z
zhaoyuan17 已提交
1511

X
xuzhihao 已提交
1512
**示例:**
Z
zhaoyuan17 已提交
1513 1514 1515

```js
var bundle = {
Z
zengsiyu 已提交
1516
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1517 1518
}
Notification.getSlotNumByBundle(bundle).then((data) => {
F
fangJinliang1 已提交
1519
	console.info("getSlotNumByBundle sucess, data: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
1520 1521 1522 1523 1524
});
```



X
xuzhihao 已提交
1525
## Notification.remove
Z
zhaoyuan17 已提交
1526

Z
zero-cyc 已提交
1527
remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
1528

R
RayShih 已提交
1529
删除指定通知(Callback形式)。
Z
zhaoyuan17 已提交
1530

X
xuzhihao 已提交
1531
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1532

X
xuzhihao 已提交
1533 1534 1535
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1536

X
xuzhihao 已提交
1537
**参数:**
Z
zhaoyuan17 已提交
1538

X
xuzhihao 已提交
1539
| 名称            | 类型                                | 必填 | 描述                 |
1540
| --------------- |   ----------------------------------| ---- | -------------------- |
X
xuzhihao 已提交
1541 1542
| bundle          | [BundleOption](#bundleoption)       | 是   | 指定包信息。           |
| notificationKey | [NotificationKey](#notificationkey) | 是   | 通知键值。             |
1543
| reason          | [RemoveReason](#removereason9)      | 是   | 通知删除原因。         |
X
xuzhihao 已提交
1544
| callback        | AsyncCallback\<void\>               | 是   | 删除指定通知回调函数。 |
Z
zhaoyuan17 已提交
1545

X
xuzhihao 已提交
1546
**示例:**
Z
zhaoyuan17 已提交
1547 1548 1549

```js
function removeCallback(err) {
F
fangJinliang1 已提交
1550 1551 1552 1553 1554
    if (err.code) {
        console.info("remove failed " + JSON.stringify(err));
    } else {
        console.info("remove success");
    }
Z
zhaoyuan17 已提交
1555 1556
}
var bundle = {
Z
zengsiyu 已提交
1557
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1558 1559
}
var notificationKey = {
Z
zengsiyu 已提交
1560 1561
    id: 0,
    label: "label",
Z
zhaoyuan17 已提交
1562
}
Z
zero-cyc 已提交
1563 1564
var reason = Notification.RemoveReason.CLICK_REASON_REMOVE;
Notification.remove(bundle, notificationKey, reason, removeCallback);
Z
zhaoyuan17 已提交
1565 1566 1567 1568
```



X
xuzhihao 已提交
1569
## Notification.remove
Z
zhaoyuan17 已提交
1570

Z
zero-cyc 已提交
1571
remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason): Promise\<void\>
Z
zhaoyuan17 已提交
1572

R
RayShih 已提交
1573
删除指定通知(Promise形式)。
Z
zhaoyuan17 已提交
1574

X
xuzhihao 已提交
1575
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1576

X
xuzhihao 已提交
1577 1578 1579
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1580

X
xuzhihao 已提交
1581
**参数:**
Z
zhaoyuan17 已提交
1582

X
xuzhihao 已提交
1583 1584 1585 1586
| 名称            | 类型            | 必填 | 描述       |
| --------------- | --------------- | ---- | ---------- |
| bundle          | [BundleOption](#bundleoption)    | 是   | 指定包信息。 |
| notificationKey | [NotificationKey](#notificationkey) | 是   | 通知键值。   |
1587
| reason          | [RemoveReason](#removereason9) | 是   | 通知删除原因。         |
Z
zhaoyuan17 已提交
1588

X
xuzhihao 已提交
1589
**示例:**
Z
zhaoyuan17 已提交
1590 1591 1592

```js
var bundle = {
Z
zengsiyu 已提交
1593
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1594 1595
}
var notificationKey = {
Z
zengsiyu 已提交
1596 1597
    id: 0,
    label: "label",
Z
zhaoyuan17 已提交
1598
}
Z
zero-cyc 已提交
1599 1600
var reason = Notification.RemoveReason.CLICK_REASON_REMOVE;
Notification.remove(bundle, notificationKey, reason).then(() => {
F
fangJinliang1 已提交
1601
	console.info("remove sucess");
Z
zhaoyuan17 已提交
1602 1603 1604 1605 1606
});
```



X
xuzhihao 已提交
1607
## Notification.remove
Z
zhaoyuan17 已提交
1608

Z
zero-cyc 已提交
1609
remove(hashCode: string, reason: RemoveReason, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
1610

R
RayShih 已提交
1611
删除指定通知(Callback形式)。
Z
zhaoyuan17 已提交
1612

X
xuzhihao 已提交
1613
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1614

X
xuzhihao 已提交
1615 1616 1617
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1618

X
xuzhihao 已提交
1619
**参数:**
Z
zhaoyuan17 已提交
1620

X
xuzhihao 已提交
1621 1622 1623
| 名称     | 类型                  | 必填 | 描述                 |
| -------- | --------------------- | ---- | -------------------- |
| hashCode | string                | 是   | 通知唯一ID。           |
1624
| reason   | [RemoveReason](#removereason9) | 是   | 通知删除原因。         |
X
xuzhihao 已提交
1625
| callback | AsyncCallback\<void\> | 是   | 删除指定通知回调函数。 |
Z
zhaoyuan17 已提交
1626

X
xuzhihao 已提交
1627
**示例:**
Z
zhaoyuan17 已提交
1628 1629

```js
1630 1631
var hashCode = 'hashCode'

Z
zhaoyuan17 已提交
1632
function removeCallback(err) {
F
fangJinliang1 已提交
1633 1634 1635 1636 1637
    if (err.code) {
        console.info("remove failed " + JSON.stringify(err));
    } else {
        console.info("remove success");
    }
Z
zhaoyuan17 已提交
1638
}
Z
zero-cyc 已提交
1639 1640
var reason = Notification.RemoveReason.CANCEL_REASON_REMOVE;
Notification.remove(hashCode, reason, removeCallback);
Z
zhaoyuan17 已提交
1641 1642 1643 1644
```



X
xuzhihao 已提交
1645
## Notification.remove
Z
zhaoyuan17 已提交
1646

Z
zero-cyc 已提交
1647
remove(hashCode: string, reason: RemoveReason): Promise\<void\>
Z
zhaoyuan17 已提交
1648

R
RayShih 已提交
1649
删除指定通知(Promise形式)。
Z
zhaoyuan17 已提交
1650

X
xuzhihao 已提交
1651
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1652

X
xuzhihao 已提交
1653 1654 1655
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1656

X
xuzhihao 已提交
1657
**参数:**
Z
zhaoyuan17 已提交
1658

X
xuzhihao 已提交
1659 1660 1661
| 名称     | 类型       | 必填 | 描述       |
| -------- | ---------- | ---- | ---------- |
| hashCode | string | 是   | 通知唯一ID。 |
1662
| reason   | [RemoveReason](#removereason9) | 是   | 通知删除原因。         |
Z
zhaoyuan17 已提交
1663

X
xuzhihao 已提交
1664
**示例:**
Z
zhaoyuan17 已提交
1665 1666

```js
1667
var hashCode = 'hashCode'
Z
zero-cyc 已提交
1668 1669
var reason = Notification.RemoveReason.CLICK_REASON_REMOVE;
Notification.remove(hashCode, reason).then(() => {
F
fangJinliang1 已提交
1670
	console.info("remove sucess");
Z
zhaoyuan17 已提交
1671 1672 1673 1674 1675
});
```



X
xuzhihao 已提交
1676
## Notification.removeAll
Z
zhaoyuan17 已提交
1677

X
xuzhihao 已提交
1678
removeAll(bundle: BundleOption, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
1679

R
RayShih 已提交
1680
删除指定包的所有通知(Callback形式)。
Z
zhaoyuan17 已提交
1681

X
xuzhihao 已提交
1682
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1683

1684 1685
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
1686 1687
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

X
xuzhihao 已提交
1688
**参数:**
Z
zhaoyuan17 已提交
1689

X
xuzhihao 已提交
1690 1691 1692 1693
| 名称     | 类型                  | 必填 | 描述                         |
| -------- | --------------------- | ---- | ---------------------------- |
| bundle   | [BundleOption](#bundleoption)          | 是   | 指定包信息。                   |
| callback | AsyncCallback\<void\> | 是   | 删除指定包的所有通知回调函数。 |
Z
zhaoyuan17 已提交
1694

X
xuzhihao 已提交
1695
**示例:**
Z
zhaoyuan17 已提交
1696 1697 1698

```js
function removeAllCallback(err) {
F
fangJinliang1 已提交
1699 1700 1701 1702 1703
    if (err.code) {
        console.info("removeAll failed " + JSON.stringify(err));
    } else {
        console.info("removeAll success");
    }
Z
zhaoyuan17 已提交
1704 1705
}
var bundle = {
Z
zengsiyu 已提交
1706
    bundle: "bundleName1",
Z
zhaoyuan17 已提交
1707 1708 1709 1710 1711 1712
}
Notification.removeAll(bundle, removeAllCallback);
```



X
xuzhihao 已提交
1713
## Notification.removeAll
Z
zhaoyuan17 已提交
1714

X
xuzhihao 已提交
1715
removeAll(callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
1716

R
RayShih 已提交
1717
删除所有通知(Callback形式)。
Z
zhaoyuan17 已提交
1718

X
xuzhihao 已提交
1719
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1720

X
xuzhihao 已提交
1721 1722 1723
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1724

X
xuzhihao 已提交
1725
**参数:**
Z
zhaoyuan17 已提交
1726

X
xuzhihao 已提交
1727 1728 1729
| 名称     | 类型                  | 必填 | 描述                 |
| -------- | --------------------- | ---- | -------------------- |
| callback | AsyncCallback\<void\> | 是   | 删除所有通知回调函数。 |
Z
zhaoyuan17 已提交
1730

X
xuzhihao 已提交
1731
**示例:**
Z
zhaoyuan17 已提交
1732 1733 1734

```js
function removeAllCallback(err) {
F
fangJinliang1 已提交
1735 1736 1737 1738 1739
    if (err.code) {
        console.info("removeAll failed " + JSON.stringify(err));
    } else {
        console.info("removeAll success");
    }
Z
zhaoyuan17 已提交
1740 1741 1742 1743 1744 1745 1746
}

Notification.removeAll(removeAllCallback);
```



X
xuzhihao 已提交
1747
## Notification.removeAll
Z
zhaoyuan17 已提交
1748

X
xuzhihao 已提交
1749
removeAll(bundle?: BundleOption): Promise\<void\>
Z
zhaoyuan17 已提交
1750

R
RayShih 已提交
1751
删除所有通知(Promise形式)。
Z
zhaoyuan17 已提交
1752

X
xuzhihao 已提交
1753
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1754

X
xuzhihao 已提交
1755 1756 1757
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1758

X
xuzhihao 已提交
1759
**参数:**
Z
zhaoyuan17 已提交
1760

X
xuzhihao 已提交
1761 1762 1763
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| bundle | [BundleOption](#bundleoption) | 否   | 指定包信息。 |
Z
zhaoyuan17 已提交
1764

X
xuzhihao 已提交
1765
**示例:**
Z
zhaoyuan17 已提交
1766 1767

```js
Z
zengsiyu 已提交
1768
Notification.removeAll().then(() => {
F
fangJinliang1 已提交
1769
	console.info("removeAll sucess");
Z
zhaoyuan17 已提交
1770 1771 1772
});
```

1773 1774
## Notification.removeAll<sup>8+</sup>

X
xuzhihao 已提交
1775
removeAll(userId: number, callback: AsyncCallback\<void>): void
1776

R
RayShih 已提交
1777
删除所有通知(callback形式)。
1778 1779 1780

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

X
xuzhihao 已提交
1781 1782 1783
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1784

1785 1786
**参数:**

X
xuzhihao 已提交
1787 1788 1789 1790
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| userId | number | 是   | 接收通知用户的Id。 |
| callback | AsyncCallback\<void\> | 是   | 删除所有通知回调函数。 |
1791 1792 1793 1794 1795

**示例:**

```js
function removeAllCallback(err) {
F
fangJinliang1 已提交
1796 1797 1798 1799 1800
    if (err.code) {
        console.info("removeAll failed " + JSON.stringify(err));
    } else {
        console.info("removeAll success");
    }
1801 1802 1803 1804 1805 1806 1807 1808 1809
}

var userId = 1

Notification.removeAll(userId, removeAllCallback);
```

## Notification.removeAll<sup>8+</sup>

X
xuzhihao 已提交
1810
removeAll(userId: number): Promise\<void>
1811

R
RayShih 已提交
1812
删除所有通知(Promise形式)。
1813 1814 1815

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

X
xuzhihao 已提交
1816 1817 1818
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1819

1820 1821
**参数:**

X
xuzhihao 已提交
1822 1823 1824
| 名称   | 类型         | 必填 | 描述       |
| ------ | ------------ | ---- | ---------- |
| userId | number | 是   | 接收通知用户的Id。 |
1825 1826 1827 1828 1829

**示例:**

```js
function removeAllCallback(err) {
F
fangJinliang1 已提交
1830 1831 1832 1833 1834
    if (err.code) {
        console.info("removeAll failed " + JSON.stringify(err));
    } else {
        console.info("removeAll success");
    }
1835 1836 1837 1838 1839 1840
}

var userId = 1

Notification.removeAll(userId, removeAllCallback);
```
Z
zhaoyuan17 已提交
1841 1842


X
xuzhihao 已提交
1843
## Notification.getAllActiveNotifications
Z
zhaoyuan17 已提交
1844

X
xuzhihao 已提交
1845
getAllActiveNotifications(callback: AsyncCallback<Array\<NotificationRequest\>>): void
Z
zhaoyuan17 已提交
1846

R
RayShih 已提交
1847
获取活动通知(Callback形式)。
Z
zhaoyuan17 已提交
1848

X
xuzhihao 已提交
1849
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1850

X
xuzhihao 已提交
1851 1852 1853
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
1854

X
xuzhihao 已提交
1855
**参数:**
Z
zhaoyuan17 已提交
1856

X
xuzhihao 已提交
1857 1858 1859
| 名称     | 类型                                                         | 必填 | 描述                 |
| -------- | ------------------------------------------------------------ | ---- | -------------------- |
| callback | AsyncCallback<Array\<[NotificationRequest](#notificationrequest)\>> | 是   | 获取活动通知回调函数。 |
Z
zhaoyuan17 已提交
1860

X
xuzhihao 已提交
1861
**示例:**
Z
zhaoyuan17 已提交
1862 1863 1864

```js
function getAllActiveNotificationsCallback(err, data) {
F
fangJinliang1 已提交
1865 1866 1867 1868 1869
    if (err.code) {
        console.info("getAllActiveNotifications failed " + JSON.stringify(err));
    } else {
        console.info("getAllActiveNotifications success");
    }
Z
zhaoyuan17 已提交
1870 1871 1872 1873 1874 1875 1876
}

Notification.getAllActiveNotifications(getAllActiveNotificationsCallback);
```



X
xuzhihao 已提交
1877
## Notification.getAllActiveNotifications
Z
zhaoyuan17 已提交
1878

X
xuzhihao 已提交
1879
getAllActiveNotifications(): Promise\<Array\<[NotificationRequest](#notificationrequest)\>\>
Z
zhaoyuan17 已提交
1880

R
RayShih 已提交
1881
获取活动通知(Promise形式)。
Z
zhaoyuan17 已提交
1882

X
xuzhihao 已提交
1883
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1884

X
xuzhihao 已提交
1885 1886
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

X
xuzhihao 已提交
1887
**系统API**: 此接口为系统接口,三方应用不支持调用。
1888

X
xuzhihao 已提交
1889
**返回值:**
Z
zhaoyuan17 已提交
1890

X
xuzhihao 已提交
1891 1892 1893
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<Array\<[NotificationRequest](#notificationrequest)\>\> | 以Promise形式返回获取活动通知。 |
Z
zhaoyuan17 已提交
1894

X
xuzhihao 已提交
1895
**示例:**
Z
zhaoyuan17 已提交
1896 1897 1898

```js
Notification.getAllActiveNotifications().then((data) => {
F
fangJinliang1 已提交
1899
	console.info("getAllActiveNotifications sucess, data: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
1900 1901 1902 1903 1904
});
```



X
xuzhihao 已提交
1905
## Notification.getActiveNotificationCount
Z
zhaoyuan17 已提交
1906

X
xuzhihao 已提交
1907
getActiveNotificationCount(callback: AsyncCallback\<number\>): void
Z
zhaoyuan17 已提交
1908

R
RayShih 已提交
1909
获取当前应用的活动通知数(Callback形式)。
Z
zhaoyuan17 已提交
1910

X
xuzhihao 已提交
1911
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1912

X
xuzhihao 已提交
1913
**参数:**
Z
zhaoyuan17 已提交
1914

X
xuzhihao 已提交
1915 1916 1917
| 名称     | 类型                   | 必填 | 描述                   |
| -------- | ---------------------- | ---- | ---------------------- |
| callback | AsyncCallback\<number\> | 是   | 获取活动通知数回调函数。 |
Z
zhaoyuan17 已提交
1918

X
xuzhihao 已提交
1919
**示例:**
Z
zhaoyuan17 已提交
1920 1921 1922

```js
function getActiveNotificationCountCallback(err, data) {
F
fangJinliang1 已提交
1923 1924 1925 1926 1927
    if (err.code) {
        console.info("getActiveNotificationCount failed " + JSON.stringify(err));
    } else {
        console.info("getActiveNotificationCount success");
    }
Z
zhaoyuan17 已提交
1928 1929 1930 1931 1932 1933 1934
}

Notification.getActiveNotificationCount(getActiveNotificationCountCallback);
```



X
xuzhihao 已提交
1935
## Notification.getActiveNotificationCount
Z
zhaoyuan17 已提交
1936

X
xuzhihao 已提交
1937
getActiveNotificationCount(): Promise\<number\>
Z
zhaoyuan17 已提交
1938

R
RayShih 已提交
1939
获取当前应用的活动通知数(Promise形式)。
Z
zhaoyuan17 已提交
1940

X
xuzhihao 已提交
1941
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1942

X
xuzhihao 已提交
1943
**返回值:**
Z
zhaoyuan17 已提交
1944

X
xuzhihao 已提交
1945 1946 1947
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<number\> | 以Promise形式返回获取当前应用的活动通知数。 |
Z
zhaoyuan17 已提交
1948

X
xuzhihao 已提交
1949
**示例:**
Z
zhaoyuan17 已提交
1950 1951 1952

```js
Notification.getActiveNotificationCount().then((data) => {
F
fangJinliang1 已提交
1953
	console.info("getActiveNotificationCount sucess, data: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
1954 1955 1956 1957 1958
});
```



X
xuzhihao 已提交
1959
## Notification.getActiveNotifications
Z
zhaoyuan17 已提交
1960

X
xuzhihao 已提交
1961
getActiveNotifications(callback: AsyncCallback<Array\<NotificationRequest\>>): void
Z
zhaoyuan17 已提交
1962

R
RayShih 已提交
1963
获取当前应用的活动通知(Callback形式)。
Z
zhaoyuan17 已提交
1964

X
xuzhihao 已提交
1965
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1966

X
xuzhihao 已提交
1967
**参数:**
Z
zhaoyuan17 已提交
1968

X
xuzhihao 已提交
1969 1970 1971
| 名称     | 类型                                                         | 必填 | 描述                           |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------ |
| callback | AsyncCallback<Array\<[NotificationRequest](#notificationrequest)\>> | 是   | 获取当前应用的活动通知回调函数。 |
Z
zhaoyuan17 已提交
1972

X
xuzhihao 已提交
1973
**示例:**
Z
zhaoyuan17 已提交
1974 1975 1976

```js
function getActiveNotificationsCallback(err, data) {
F
fangJinliang1 已提交
1977 1978 1979 1980 1981
    if (err.code) {
        console.info("getActiveNotifications failed " + JSON.stringify(err));
    } else {
        console.info("getActiveNotifications success");
    }
Z
zhaoyuan17 已提交
1982 1983 1984 1985 1986 1987 1988
}

Notification.getActiveNotifications(getActiveNotificationsCallback);
```



X
xuzhihao 已提交
1989
## Notification.getActiveNotifications
Z
zhaoyuan17 已提交
1990

X
xuzhihao 已提交
1991
getActiveNotifications(): Promise\<Array\<[NotificationRequest](#notificationrequest)\>\>
Z
zhaoyuan17 已提交
1992

R
RayShih 已提交
1993
获取当前应用的活动通知(Promise形式)。
Z
zhaoyuan17 已提交
1994

X
xuzhihao 已提交
1995
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
1996

X
xuzhihao 已提交
1997
**返回值:**
Z
zhaoyuan17 已提交
1998

X
xuzhihao 已提交
1999 2000 2001
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<Array\<[NotificationRequest](#notificationrequest)\>\> | 以Promise形式返回获取当前应用的活动通知。 |
Z
zhaoyuan17 已提交
2002

X
xuzhihao 已提交
2003
**示例:**
Z
zhaoyuan17 已提交
2004 2005 2006

```js
Notification.getActiveNotifications().then((data) => {
F
fangJinliang1 已提交
2007
	console.info("removeGroupByBundle sucess, data: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
2008 2009 2010 2011 2012
});
```



2013
## Notification.cancelGroup<sup>8+</sup>
Z
zhaoyuan17 已提交
2014

X
xuzhihao 已提交
2015
cancelGroup(groupName: string, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
2016

R
RayShih 已提交
2017
取消本应用指定组通知(Callback形式)。
Z
zhaoyuan17 已提交
2018

X
xuzhihao 已提交
2019
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
2020

X
xuzhihao 已提交
2021
**参数:**
Z
zhaoyuan17 已提交
2022

X
xuzhihao 已提交
2023 2024 2025 2026
| 名称      | 类型                  | 必填 | 描述                         |
| --------- | --------------------- | ---- | ---------------------------- |
| groupName | string                | 是   | 指定通知组名称。               |
| callback  | AsyncCallback\<void\> | 是   | 取消本应用指定组通知回调函数。 |
Z
zhaoyuan17 已提交
2027

X
xuzhihao 已提交
2028
**示例:**
Z
zhaoyuan17 已提交
2029 2030 2031

```js
function cancelGroupCallback(err) {
F
fangJinliang1 已提交
2032 2033 2034 2035 2036
    if (err.code) {
        console.info("cancelGroup failed " + JSON.stringify(err));
    } else {
        console.info("cancelGroup success");
    }
Z
zhaoyuan17 已提交
2037 2038 2039 2040 2041 2042 2043 2044 2045
}

var groupName = "GroupName";

Notification.cancelGroup(groupName, cancelGroupCallback);
```



2046
## Notification.cancelGroup<sup>8+</sup>
Z
zhaoyuan17 已提交
2047

X
xuzhihao 已提交
2048
cancelGroup(groupName: string): Promise\<void\>
Z
zhaoyuan17 已提交
2049

R
RayShih 已提交
2050
取消本应用指定组通知(Promise形式)。
Z
zhaoyuan17 已提交
2051

X
xuzhihao 已提交
2052
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
2053

X
xuzhihao 已提交
2054
**参数:**
Z
zhaoyuan17 已提交
2055

X
xuzhihao 已提交
2056 2057 2058
| 名称      | 类型   | 必填 | 描述           |
| --------- | ------ | ---- | -------------- |
| groupName | string | 是   | 指定通知组名称。 |
Z
zhaoyuan17 已提交
2059

X
xuzhihao 已提交
2060
**示例:**
Z
zhaoyuan17 已提交
2061 2062 2063 2064

```js
var groupName = "GroupName";
Notification.cancelGroup(groupName).then(() => {
F
fangJinliang1 已提交
2065
	console.info("cancelGroup sucess");
Z
zhaoyuan17 已提交
2066 2067 2068 2069 2070
});
```



2071
## Notification.removeGroupByBundle<sup>8+</sup>
Z
zhaoyuan17 已提交
2072

X
xuzhihao 已提交
2073
removeGroupByBundle(bundle: BundleOption, groupName: string, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
2074

R
RayShih 已提交
2075
删除指定应用指定组通知(Callback形式)。
Z
zhaoyuan17 已提交
2076

X
xuzhihao 已提交
2077
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
2078

X
xuzhihao 已提交
2079 2080 2081
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2082

X
xuzhihao 已提交
2083
**参数:**
Z
zhaoyuan17 已提交
2084

X
xuzhihao 已提交
2085 2086 2087 2088 2089
| 名称      | 类型                  | 必填 | 描述                         |
| --------- | --------------------- | ---- | ---------------------------- |
| bundle    | [BundleOption](#bundleoption)          | 是   | 指定包信息。                   |
| groupName | string                | 是   | 指定通知组名称。               |
| callback  | AsyncCallback\<void\> | 是   | 删除本应用指定组通知回调函数。 |
Z
zhaoyuan17 已提交
2090

X
xuzhihao 已提交
2091
**示例:**
Z
zhaoyuan17 已提交
2092 2093 2094

```js
function removeGroupByBundleCallback(err) {
F
fangJinliang1 已提交
2095 2096 2097 2098 2099
    if (err.code) {
        console.info("removeGroupByBundle failed " + JSON.stringify(err));
    } else {
        console.info("removeGroupByBundle success");
    }
Z
zhaoyuan17 已提交
2100 2101
}

X
xuchenghua09 已提交
2102
var bundleOption = {bundle: "Bundle"};
Z
zhaoyuan17 已提交
2103 2104 2105 2106 2107 2108 2109
var groupName = "GroupName";

Notification.removeGroupByBundle(bundleOption, groupName, removeGroupByBundleCallback);
```



2110
## Notification.removeGroupByBundle<sup>8+</sup>
Z
zhaoyuan17 已提交
2111

X
xuzhihao 已提交
2112
removeGroupByBundle(bundle: BundleOption, groupName: string): Promise\<void\>
Z
zhaoyuan17 已提交
2113

R
RayShih 已提交
2114
删除指定应用指定组通知(Promise形式)。
Z
zhaoyuan17 已提交
2115

X
xuzhihao 已提交
2116
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
2117

X
xuzhihao 已提交
2118 2119 2120
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2121

X
xuzhihao 已提交
2122
**参数:**
Z
zhaoyuan17 已提交
2123

X
xuzhihao 已提交
2124 2125 2126 2127
| 名称      | 类型         | 必填 | 描述           |
| --------- | ------------ | ---- | -------------- |
| bundle    | [BundleOption](#bundleoption) | 是   | 指定包信息。     |
| groupName | string       | 是   | 指定通知组名称。 |
Z
zhaoyuan17 已提交
2128

X
xuzhihao 已提交
2129
**示例:**
Z
zhaoyuan17 已提交
2130 2131

```js
X
xuchenghua09 已提交
2132
var bundleOption = {bundle: "Bundle"};
Z
zhaoyuan17 已提交
2133 2134
var groupName = "GroupName";
Notification.removeGroupByBundle(bundleOption, groupName).then(() => {
F
fangJinliang1 已提交
2135
	console.info("removeGroupByBundle sucess");
Z
zhaoyuan17 已提交
2136 2137 2138 2139 2140
});
```



2141
## Notification.setDoNotDisturbDate<sup>8+</sup>
Z
zhaoyuan17 已提交
2142

X
xuzhihao 已提交
2143
setDoNotDisturbDate(date: DoNotDisturbDate, callback: AsyncCallback\<void\>): void
Z
zhaoyuan17 已提交
2144

R
RayShih 已提交
2145
设置免打扰时间(Callback形式)。
Z
zhaoyuan17 已提交
2146

X
xuzhihao 已提交
2147
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
2148

X
xuzhihao 已提交
2149 2150 2151
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2152

X
xuzhihao 已提交
2153
**参数:**
Z
zhaoyuan17 已提交
2154

X
xuzhihao 已提交
2155 2156 2157 2158
| 名称     | 类型                  | 必填 | 描述                   |
| -------- | --------------------- | ---- | ---------------------- |
| date     | [DoNotDisturbDate](#donotdisturbdate8)      | 是   | 免打扰时间选项。         |
| callback | AsyncCallback\<void\> | 是   | 设置免打扰时间回调函数。 |
Z
zhaoyuan17 已提交
2159

X
xuzhihao 已提交
2160
**示例:**
Z
zhaoyuan17 已提交
2161 2162 2163

```js
function setDoNotDisturbDateCallback(err) {
F
fangJinliang1 已提交
2164 2165 2166 2167 2168
    if (err.code) {
        console.info("setDoNotDisturbDate failed " + JSON.stringify(err));
    } else {
        console.info("setDoNotDisturbDate success");
    }
Z
zhaoyuan17 已提交
2169 2170 2171
}

var doNotDisturbDate = {
Z
zengsiyu 已提交
2172
    type: Notification.DoNotDisturbType.TYPE_ONCE,
X
xuchenghua09 已提交
2173 2174
    begin: new Date(),
    end: new Date(2021, 11, 15, 18, 0)
Z
zhaoyuan17 已提交
2175 2176 2177 2178 2179 2180 2181
}

Notification.setDoNotDisturbDate(doNotDisturbDate, setDoNotDisturbDateCallback);
```



2182
## Notification.setDoNotDisturbDate<sup>8+</sup>
Z
zhaoyuan17 已提交
2183

X
xuzhihao 已提交
2184
setDoNotDisturbDate(date: DoNotDisturbDate): Promise\<void\>
Z
zhaoyuan17 已提交
2185

R
RayShih 已提交
2186
设置免打扰时间接口(Promise形式)。
Z
zhaoyuan17 已提交
2187

X
xuzhihao 已提交
2188
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
2189

X
xuzhihao 已提交
2190 2191 2192
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2193

X
xuzhihao 已提交
2194
**参数:**
Z
zhaoyuan17 已提交
2195

X
xuzhihao 已提交
2196 2197 2198
| 名称 | 类型             | 必填 | 描述           |
| ---- | ---------------- | ---- | -------------- |
| date | [DoNotDisturbDate](#donotdisturbdate8) | 是   | 免打扰时间选项。 |
Z
zhaoyuan17 已提交
2199

X
xuzhihao 已提交
2200
**示例:**
Z
zhaoyuan17 已提交
2201 2202 2203

```js
var doNotDisturbDate = {
Z
zengsiyu 已提交
2204
    type: Notification.DoNotDisturbType.TYPE_ONCE,
X
xuchenghua09 已提交
2205 2206
    begin: new Date(),
    end: new Date(2021, 11, 15, 18, 0)
Z
zhaoyuan17 已提交
2207 2208
}
Notification.setDoNotDisturbDate(doNotDisturbDate).then(() => {
F
fangJinliang1 已提交
2209
	console.info("setDoNotDisturbDate sucess");
Z
zhaoyuan17 已提交
2210 2211 2212 2213
});
```


2214 2215 2216 2217
## Notification.setDoNotDisturbDate<sup>8+</sup>

setDoNotDisturbDate(date: DoNotDisturbDate, userId: number, callback: AsyncCallback\<void\>): void

R
RayShih 已提交
2218
指定用户设置免打扰时间(Callback形式)。
2219 2220 2221

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

X
xuzhihao 已提交
2222 2223 2224
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2225

2226 2227
**参数:**

X
xuzhihao 已提交
2228 2229 2230 2231 2232
| 名称     | 类型                  | 必填 | 描述                   |
| -------- | --------------------- | ---- | ---------------------- |
| date     | [DoNotDisturbDate](#donotdisturbdate8)      | 是   | 免打扰时间选项。         |
| userId   | number                | 是   | 设置免打扰事件的用户ID。 |
| callback | AsyncCallback\<void\> | 是   | 设置免打扰时间回调函数。 |
2233 2234 2235 2236 2237

**示例:**

```js
function setDoNotDisturbDateCallback(err) {
F
fangJinliang1 已提交
2238 2239 2240 2241 2242
    if (err.code) {
        console.info("setDoNotDisturbDate failed " + JSON.stringify(err));
    } else {
        console.info("setDoNotDisturbDate success");
    }
2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261
}

var doNotDisturbDate = {
    type: Notification.DoNotDisturbType.TYPE_ONCE,
    begin: new Date(),
    end: new Date(2021, 11, 15, 18, 0)
}

var userId = 1

Notification.setDoNotDisturbDate(doNotDisturbDate, userId, setDoNotDisturbDateCallback);
```



## Notification.setDoNotDisturbDate<sup>8+</sup>

setDoNotDisturbDate(date: DoNotDisturbDate, userId: number): Promise\<void\>

R
RayShih 已提交
2262
指定用户设置免打扰时间接口(Promise形式)。
2263 2264 2265

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

X
xuzhihao 已提交
2266 2267 2268
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2269

2270 2271
**参数:**

X
xuzhihao 已提交
2272 2273 2274 2275
| 名称   | 类型             | 必填 | 描述           |
| ------ | ---------------- | ---- | -------------- |
| date   | [DoNotDisturbDate](#donotdisturbdate8) | 是   | 免打扰时间选项。 |
| userId | number           | 是   | 设置免打扰事件的用户ID。 |
2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288

**示例:**

```js
var doNotDisturbDate = {
    type: Notification.DoNotDisturbType.TYPE_ONCE,
    begin: new Date(),
    end: new Date(2021, 11, 15, 18, 0)
}

var userId = 1

Notification.setDoNotDisturbDate(doNotDisturbDate, userId).then(() => {
F
fangJinliang1 已提交
2289
	console.info("setDoNotDisturbDate sucess");
2290 2291 2292
});
```

Z
zhaoyuan17 已提交
2293

2294
## Notification.getDoNotDisturbDate<sup>8+</sup>
Z
zhaoyuan17 已提交
2295

X
xuzhihao 已提交
2296
getDoNotDisturbDate(callback: AsyncCallback\<DoNotDisturbDate\>): void
Z
zhaoyuan17 已提交
2297

R
RayShih 已提交
2298
查询免打扰时间接口(Callback形式)。
Z
zhaoyuan17 已提交
2299

X
xuzhihao 已提交
2300
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
2301

X
xuzhihao 已提交
2302 2303 2304
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2305

X
xuzhihao 已提交
2306
**参数:**
Z
zhaoyuan17 已提交
2307

X
xuzhihao 已提交
2308 2309 2310
| 名称     | 类型                              | 必填 | 描述                   |
| -------- | --------------------------------- | ---- | ---------------------- |
| callback | AsyncCallback\<[DoNotDisturbDate](#donotdisturbdate8)\> | 是   | 查询免打扰时间回调函数。 |
Z
zhaoyuan17 已提交
2311

X
xuzhihao 已提交
2312
**示例:**
Z
zhaoyuan17 已提交
2313 2314 2315

```js
function getDoNotDisturbDateCallback(err,data) {
F
fangJinliang1 已提交
2316 2317 2318 2319 2320
    if (err.code) {
        console.info("getDoNotDisturbDate failed " + JSON.stringify(err));
    } else {
        console.info("getDoNotDisturbDate success");
    }
Z
zhaoyuan17 已提交
2321 2322 2323 2324 2325 2326 2327
}

Notification.getDoNotDisturbDate(getDoNotDisturbDateCallback);
```



2328
## Notification.getDoNotDisturbDate<sup>8+</sup>
Z
zhaoyuan17 已提交
2329

X
xuzhihao 已提交
2330
getDoNotDisturbDate(): Promise\<DoNotDisturbDate\>
Z
zhaoyuan17 已提交
2331

R
RayShih 已提交
2332
查询免打扰时间接口(Promise形式)。
Z
zhaoyuan17 已提交
2333

X
xuzhihao 已提交
2334
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
2335

X
xuzhihao 已提交
2336 2337 2338
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2339

X
xuzhihao 已提交
2340
**返回值:**
Z
zhaoyuan17 已提交
2341

X
xuzhihao 已提交
2342 2343
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
2344
| Promise\<[DoNotDisturbDate](#donotdisturbdate8)\> | 以Promise形式返回获取查询免打扰时间接口。 |
Z
zhaoyuan17 已提交
2345

X
xuzhihao 已提交
2346
**示例:**
Z
zhaoyuan17 已提交
2347 2348 2349

```js
Notification.getDoNotDisturbDate().then((data) => {
F
fangJinliang1 已提交
2350
	console.info("getDoNotDisturbDate sucess, data: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
2351 2352 2353 2354
});
```


2355 2356 2357 2358
## Notification.getDoNotDisturbDate<sup>8+</sup>

getDoNotDisturbDate(userId: number, callback: AsyncCallback\<DoNotDisturbDate\>): void

R
RayShih 已提交
2359
指定用户查询免打扰时间接口(Callback形式)。
2360 2361 2362

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

X
xuzhihao 已提交
2363 2364 2365 2366
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。

2367 2368
**参数:**

X
xuzhihao 已提交
2369 2370 2371 2372
| 名称     | 类型                              | 必填 | 描述                   |
| -------- | --------------------------------- | ---- | ---------------------- |
| callback | AsyncCallback\<[DoNotDisturbDate](#donotdisturbdate8)\> | 是   | 查询免打扰时间回调函数。 |
| userId   | number                            | 是   | 设置免打扰事件的用户ID。 |
2373 2374 2375 2376 2377

**示例:**

```js
function getDoNotDisturbDateCallback(err,data) {
F
fangJinliang1 已提交
2378 2379 2380 2381 2382
    if (err.code) {
        console.info("getDoNotDisturbDate failed " + JSON.stringify(err));
    } else {
        console.info("getDoNotDisturbDate success");
    }
2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395
}

var userId = 1

Notification.getDoNotDisturbDate(userId, getDoNotDisturbDateCallback);
```



## Notification.getDoNotDisturbDate<sup>8+</sup>

getDoNotDisturbDate(userId: number): Promise\<DoNotDisturbDate\>

R
RayShih 已提交
2396
指定用户查询免打扰时间接口(Promise形式)。
2397 2398 2399

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

X
xuzhihao 已提交
2400 2401 2402 2403
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。

2404 2405
**参数:**

X
xuzhihao 已提交
2406 2407 2408
| 名称     | 类型                              | 必填 | 描述                   |
| -------- | --------------------------------- | ---- | ---------------------- |
| userId   | number                            | 是   | 设置免打扰事件的用户ID。 |
2409 2410 2411 2412 2413

**返回值:**

| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
2414
| Promise\<[DoNotDisturbDate](#donotdisturbdate8)\> | 以Promise形式返回获取查询免打扰时间接口。 |
2415 2416 2417 2418 2419 2420 2421

**示例:**

```js
var userId = 1

Notification.getDoNotDisturbDate(userId).then((data) => {
F
fangJinliang1 已提交
2422
	console.info("getDoNotDisturbDate sucess, data: " + JSON.stringify(data));
2423 2424 2425
});
```

Z
zhaoyuan17 已提交
2426

2427
## Notification.supportDoNotDisturbMode<sup>8+</sup>
Z
zhaoyuan17 已提交
2428

X
xuzhihao 已提交
2429
supportDoNotDisturbMode(callback: AsyncCallback\<boolean\>): void
Z
zhaoyuan17 已提交
2430

R
RayShih 已提交
2431
查询是否支持勿扰模式功能(Callback形式)。
Z
zhaoyuan17 已提交
2432

X
xuzhihao 已提交
2433
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
2434

X
xuzhihao 已提交
2435 2436 2437
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2438

X
xuzhihao 已提交
2439
**参数:**
Z
zhaoyuan17 已提交
2440

X
xuzhihao 已提交
2441 2442 2443
| 名称     | 类型                     | 必填 | 描述                             |
| -------- | ------------------------ | ---- | -------------------------------- |
| callback | AsyncCallback\<boolean\> | 是   | 查询是否支持勿扰模式功能回调函数。 |
Z
zhaoyuan17 已提交
2444

X
xuzhihao 已提交
2445
**示例:**
Z
zhaoyuan17 已提交
2446 2447 2448

```js
function supportDoNotDisturbModeCallback(err,data) {
F
fangJinliang1 已提交
2449 2450 2451 2452 2453
    if (err.code) {
        console.info("supportDoNotDisturbMode failed " + JSON.stringify(err));
    } else {
        console.info("supportDoNotDisturbMode success");
    }
Z
zhaoyuan17 已提交
2454 2455 2456 2457 2458 2459 2460
}

Notification.supportDoNotDisturbMode(supportDoNotDisturbModeCallback);
```



2461
## Notification.supportDoNotDisturbMode<sup>8+</sup>
Z
zhaoyuan17 已提交
2462

X
xuzhihao 已提交
2463
supportDoNotDisturbMode(): Promise\<boolean\>
Z
zhaoyuan17 已提交
2464

R
RayShih 已提交
2465
查询是否支持勿扰模式功能(Promise形式)。
Z
zhaoyuan17 已提交
2466

X
xuzhihao 已提交
2467
**系统能力**:SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
2468

X
xuzhihao 已提交
2469 2470 2471
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2472

X
xuzhihao 已提交
2473
**返回值:**
Z
zhaoyuan17 已提交
2474

X
xuzhihao 已提交
2475 2476 2477
| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<boolean\> | 以Promise形式返回获取是否支持勿扰模式功能的结果。 |
Z
zhaoyuan17 已提交
2478

X
xuzhihao 已提交
2479
**示例:**
Z
zhaoyuan17 已提交
2480 2481 2482

```js
Notification.supportDoNotDisturbMode().then((data) => {
F
fangJinliang1 已提交
2483
	console.info("supportDoNotDisturbMode sucess, data: " + JSON.stringify(data));
Z
zhaoyuan17 已提交
2484 2485 2486 2487 2488
});
```



2489
## Notification.isSupportTemplate<sup>8+</sup>
Z
zengsiyu 已提交
2490 2491 2492

isSupportTemplate(templateName: string, callback: AsyncCallback\<boolean\>): void

F
fangjinliang 已提交
2493
查询模板是否存在(Callback形式)。
Z
zengsiyu 已提交
2494

X
xuzhihao 已提交
2495 2496 2497
**系统能力**:SystemCapability.Notification.Notification

**参数:**
Z
zengsiyu 已提交
2498 2499 2500

| 参数名       | 类型                     | 必填 | 说明                       |
| ------------ | ------------------------ | ---- | -------------------------- |
X
xuzhihao 已提交
2501 2502
| templateName | string                   | 是   | 模板名称。                   |
| callback     | AsyncCallback\<boolean\> | 是   | 查询模板是否存在的回调函数。 |
Z
zengsiyu 已提交
2503

X
xuzhihao 已提交
2504
**示例:**
Z
zengsiyu 已提交
2505 2506 2507 2508

```javascript
var templateName = 'process';
function isSupportTemplateCallback(err, data) {
F
fangJinliang1 已提交
2509 2510 2511 2512 2513
    if (err.code) {
        console.info("isSupportTemplate failed " + JSON.stringify(err));
    } else {
        console.info("isSupportTemplate success");
    }
Z
zengsiyu 已提交
2514 2515 2516 2517 2518 2519 2520
}

Notification.isSupportTemplate(templateName, isSupportTemplateCallback);
```



2521
## Notification.isSupportTemplate<sup>8+</sup>
Z
zengsiyu 已提交
2522 2523 2524

isSupportTemplate(templateName: string): Promise\<boolean\>

F
fangjinliang 已提交
2525
查询模板是否存在(Promise形式)。
Z
zengsiyu 已提交
2526

X
xuzhihao 已提交
2527 2528 2529
**系统能力**:SystemCapability.Notification.Notification

**参数:**
Z
zengsiyu 已提交
2530 2531 2532

| 参数名       | 类型   | 必填 | 说明     |
| ------------ | ------ | ---- | -------- |
X
xuzhihao 已提交
2533
| templateName | string | 是   | 模板名称。 |
Z
zengsiyu 已提交
2534

X
xuzhihao 已提交
2535
**返回值:**
Z
zengsiyu 已提交
2536 2537 2538

| 类型               | 说明            |
| ------------------ | --------------- |
X
xuzhihao 已提交
2539
| Promise\<boolean\> | Promise方式返回模板是否存在的结果。 |
Z
zengsiyu 已提交
2540

X
xuzhihao 已提交
2541
**示例:**
Z
zengsiyu 已提交
2542 2543 2544 2545 2546

```javascript
var templateName = 'process';

Notification.isSupportTemplate(templateName).then((data) => {
F
fangJinliang1 已提交
2547
    console.info("isSupportTemplate success, data: " + JSON.stringify(data));
Z
zengsiyu 已提交
2548 2549 2550 2551 2552
});
```



2553
## Notification.requestEnableNotification<sup>8+</sup>
Z
zengsiyu 已提交
2554

X
xuzhihao 已提交
2555
requestEnableNotification(callback: AsyncCallback\<void\>): void
Z
zengsiyu 已提交
2556

F
fangjinliang 已提交
2557
应用请求通知使能(Callback形式)。
Z
zengsiyu 已提交
2558

X
xuzhihao 已提交
2559 2560 2561
**系统能力**:SystemCapability.Notification.Notification

**参数:**
Z
zengsiyu 已提交
2562 2563 2564

| 参数名   | 类型                     | 必填 | 说明                       |
| -------- | ------------------------ | ---- | -------------------------- |
2565
| callback | AsyncCallback\<void\> | 是   | 应用请求通知使能的回调函数。 |
Z
zengsiyu 已提交
2566

X
xuzhihao 已提交
2567
**示例:**
Z
zengsiyu 已提交
2568 2569

```javascript
2570
function requestEnableNotificationCallback() {
F
fangJinliang1 已提交
2571 2572 2573 2574 2575
    if (err.code) {
        console.info("requestEnableNotification failed " + JSON.stringify(err));
    } else {
        console.info("requestEnableNotification success");
    }
Z
zengsiyu 已提交
2576 2577
};

2578
Notification.requestEnableNotification(requestEnableNotificationCallback);
Z
zengsiyu 已提交
2579 2580 2581 2582
```



2583
## Notification.requestEnableNotification<sup>8+</sup>
Z
zengsiyu 已提交
2584

X
xuzhihao 已提交
2585
requestEnableNotification(): Promise\<void\>
Z
zengsiyu 已提交
2586

F
fangjinliang 已提交
2587
应用请求通知使能(Promise形式)。
Z
zengsiyu 已提交
2588

X
xuzhihao 已提交
2589 2590 2591
**系统能力**:SystemCapability.Notification.Notification

**示例:**
Z
zengsiyu 已提交
2592 2593

```javascript
2594
Notification.requestEnableNotification()
Z
zengsiyu 已提交
2595
    .then(() => {
F
fangJinliang1 已提交
2596
        console.info("requestEnableNotification sucess");
Z
zengsiyu 已提交
2597 2598 2599 2600
	});
```


2601
## Notification.enableDistributed<sup>8+</sup>
X
xuzhihao 已提交
2602

2603
enableDistributed(enable: boolean, callback: AsyncCallback\<void\>): void
X
xuzhihao 已提交
2604

F
fangjinliang 已提交
2605
设置设备是否支持分布式通知(Callback形式)。
X
xuzhihao 已提交
2606 2607 2608

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

X
xuzhihao 已提交
2609 2610 2611
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2612

X
xuzhihao 已提交
2613 2614
**参数:**

2615 2616 2617 2618
| 参数名   | 类型                     | 必填 | 说明                       |
| -------- | ------------------------ | ---- | -------------------------- |
| enable   | boolean                  | 是   | 是否支持。<br/>true 支持。<br/>false 不支持。|
| callback | AsyncCallback\<void\> | 是   | 设置设备是否支持分布式通知的回调函数。 |
X
xuzhihao 已提交
2619 2620 2621 2622

**示例:**

```javascript
2623
function enabledNotificationCallback() {
F
fangJinliang1 已提交
2624 2625 2626 2627 2628
    if (err.code) {
        console.info("enableDistributed failed " + JSON.stringify(err));
    } else {
        console.info("enableDistributed success");
    }
X
xuzhihao 已提交
2629 2630
};

2631 2632 2633
var enable = true

Notification.enableDistributed(enable, enabledNotificationCallback);
X
xuzhihao 已提交
2634 2635 2636
```


Z
zengsiyu 已提交
2637

2638
## Notification.enableDistributed<sup>8+</sup>
Z
zengsiyu 已提交
2639

X
xuzhihao 已提交
2640
enableDistributed(enable: boolean): Promise\<void>
X
xuezhongzhu 已提交
2641

F
fangjinliang 已提交
2642
设置设备是否支持分布式通知(Promise形式)。
Z
zengsiyu 已提交
2643

2644
**系统能力**:SystemCapability.Notification.Notification
Z
zengsiyu 已提交
2645

X
xuzhihao 已提交
2646 2647 2648
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2649

2650
**参数:**
Z
zengsiyu 已提交
2651

2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662
| 参数名   | 类型                     | 必填 | 说明                       |
| -------- | ------------------------ | ---- | -------------------------- |
| enable   | boolean                  | 是   | 是否支持。<br/>true 支持。<br/>false 不支持。|

**示例:**

```javascript
var enable = true

Notification.enableDistributed(enable)
    .then(() => {
F
fangJinliang1 已提交
2663
        console.info("enableDistributed sucess");
2664 2665 2666 2667 2668 2669
    });
```


## Notification.isDistributedEnabled<sup>8+</sup>

X
xuzhihao 已提交
2670
isDistributedEnabled(callback: AsyncCallback\<boolean>): void
2671

F
fangjinliang 已提交
2672
获取设备是否支持分布式通知(Callback形式)。
Z
zengsiyu 已提交
2673

X
xuzhihao 已提交
2674 2675 2676
**系统能力**:SystemCapability.Notification.Notification

**参数:**
Z
zengsiyu 已提交
2677

2678 2679 2680
| 参数名   | 类型                     | 必填 | 说明                       |
| -------- | ------------------------ | ---- | -------------------------- |
| callback | AsyncCallback\<boolean\> | 是   | 设备是否支持分布式通知的回调函数。 |
Z
zengsiyu 已提交
2681

X
xuzhihao 已提交
2682
**示例:**
Z
zengsiyu 已提交
2683 2684

```javascript
2685
function isDistributedEnabledCallback() {
F
fangJinliang1 已提交
2686 2687 2688 2689 2690
    if (err.code) {
        console.info("isDistributedEnabled failed " + JSON.stringify(err));
    } else {
        console.info("isDistributedEnabled success");
    }
Z
zengsiyu 已提交
2691 2692
};

2693
Notification.isDistributedEnabled(isDistributedEnabledCallback);
Z
zengsiyu 已提交
2694 2695 2696 2697
```



2698
## Notification.isDistributedEnabled<sup>8+</sup>
X
xuezhongzhu 已提交
2699

X
xuzhihao 已提交
2700
isDistributedEnabled(): Promise\<boolean>
Z
zengsiyu 已提交
2701

F
fangjinliang 已提交
2702
获取设备是否支持分布式通知(Promise形式)。
Z
zengsiyu 已提交
2703

2704
**系统能力**:SystemCapability.Notification.Notification
Z
zengsiyu 已提交
2705

2706
**返回值:**
Z
zengsiyu 已提交
2707

2708 2709 2710
| 类型               | 说明            |
| ------------------ | --------------- |
| Promise\<boolean\> | Promise方式返回设备是否支持分布式通知的结果。<br/>true 支持。<br/>false 不支持。 |
Z
zengsiyu 已提交
2711

2712
**示例:**
X
xuezhongzhu 已提交
2713

2714 2715 2716
```javascript
Notification.isDistributedEnabled()
    .then((data) => {
F
fangJinliang1 已提交
2717
        console.info("isDistributedEnabled sucess, data: " + JSON.stringify(data));
2718 2719
    });
```
Z
zengsiyu 已提交
2720 2721


2722
## Notification.enableDistributedByBundle<sup>8+</sup>
Z
zengsiyu 已提交
2723

X
xuzhihao 已提交
2724
enableDistributedByBundle(bundle: BundleOption, enable: boolean, callback: AsyncCallback\<void>): void
Z
zengsiyu 已提交
2725

F
fangjinliang 已提交
2726
根据应用的包设置应用程序是否支持分布式通知(Callback形式)。
X
xuezhongzhu 已提交
2727

2728
**系统能力**:SystemCapability.Notification.Notification
Z
zengsiyu 已提交
2729

X
xuzhihao 已提交
2730 2731 2732
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2733

2734
**参数:**
Z
zengsiyu 已提交
2735

2736 2737
| 参数名   | 类型                     | 必填 | 说明                       |
| -------- | ------------------------ | ---- | -------------------------- |
2738
| bundle   | [BundleOption](#bundleoption)             | 是   | 应用的包。                     |
2739 2740
| enable   | boolean                  | 是   | 是否支持。                       |
| callback | AsyncCallback\<void\> | 是   | 应用程序是否支持分布式通知的回调函数。 |
Z
zengsiyu 已提交
2741

2742
**示例:**
Z
zengsiyu 已提交
2743

2744 2745
```javascript
function enableDistributedByBundleCallback() {
F
fangJinliang1 已提交
2746 2747 2748 2749 2750
    if (err.code) {
        console.info("enableDistributedByBundle failed " + JSON.stringify(err));
    } else {
        console.info("enableDistributedByBundle success");
    }
2751
};
Z
zengsiyu 已提交
2752

2753 2754 2755
var bundle = {
    bundle: "bundleName1",
}
X
xuezhongzhu 已提交
2756

2757
var enable = true
Z
zengsiyu 已提交
2758

2759 2760
Notification.enableDistributedByBundle(bundle, enable, enableDistributedByBundleCallback);
```
Z
zengsiyu 已提交
2761 2762 2763



2764
## Notification.enableDistributedByBundle<sup>8+</sup>
X
xuezhongzhu 已提交
2765

X
xuzhihao 已提交
2766
enableDistributedByBundle(bundle: BundleOption, enable: boolean): Promise\<void>
Z
zengsiyu 已提交
2767

F
fangjinliang 已提交
2768
根据应用的包设置应用程序是否支持分布式通知(Promise形式)。
Z
zengsiyu 已提交
2769

2770
**系统能力**:SystemCapability.Notification.Notification
Z
zengsiyu 已提交
2771

X
xuzhihao 已提交
2772 2773 2774
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2775

2776
**参数:**
Z
zengsiyu 已提交
2777

2778 2779
| 参数名   | 类型                     | 必填 | 说明                       |
| -------- | ------------------------ | ---- | -------------------------- |
2780
| bundle   | [BundleOption](#bundleoption)             | 是   | 应用的包。                |
2781
| enable   | boolean                  | 是   | 是否支持。                  |
X
xuezhongzhu 已提交
2782

2783
**示例:**
Z
zengsiyu 已提交
2784

2785 2786 2787 2788
```javascript
var bundle = {
    bundle: "bundleName1",
}
Z
zengsiyu 已提交
2789

2790
var enable = true
X
xuezhongzhu 已提交
2791

2792 2793
Notification.enableDistributedByBundle(bundle, enable)
    .then(() => {
F
fangJinliang1 已提交
2794
        console.info("enableDistributedByBundle sucess");
2795 2796
    });
```
Z
zengsiyu 已提交
2797

2798
## Notification.isDistributedEnabledByBundle<sup>8+</sup>
Z
zengsiyu 已提交
2799

X
xuzhihao 已提交
2800
isDistributedEnabledByBundle(bundle: BundleOption, callback: AsyncCallback\<boolean>): void
Z
zengsiyu 已提交
2801

F
fangjinliang 已提交
2802
根据应用的包获取应用程序是否支持分布式通知(Callback形式)。
Z
zengsiyu 已提交
2803

2804
**系统能力**:SystemCapability.Notification.Notification
X
xuezhongzhu 已提交
2805

X
xuzhihao 已提交
2806 2807 2808
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2809

2810
**参数:**
Z
zengsiyu 已提交
2811

2812 2813
| 参数名   | 类型                     | 必填 | 说明                       |
| -------- | ------------------------ | ---- | -------------------------- |
2814
| bundle   | [BundleOption](#bundleoption)             | 是   | 应用的包。                     |
2815
| callback | AsyncCallback\<boolean\> | 是   | 应用程序是否支持分布式通知的回调函数。 |
Z
zengsiyu 已提交
2816

2817
**示例:**
Z
zengsiyu 已提交
2818

2819 2820
```javascript
function isDistributedEnabledByBundleCallback(data) {
F
fangJinliang1 已提交
2821 2822 2823 2824 2825
    if (err.code) {
        console.info("isDistributedEnabledByBundle failed " + JSON.stringify(err));
    } else {
        console.info("isDistributedEnabledByBundle success");
    }
2826
};
Z
zengsiyu 已提交
2827

2828 2829 2830
var bundle = {
    bundle: "bundleName1",
}
X
xuezhongzhu 已提交
2831

2832
Notification.isDistributedEnabledByBundle(bundle, isDistributedEnabledByBundleCallback);
2833
```
Z
zengsiyu 已提交
2834 2835 2836



2837
## Notification.isDistributedEnabledByBundle<sup>8+</sup>
Z
zengsiyu 已提交
2838

X
xuzhihao 已提交
2839
isDistributedEnabledByBundle(bundle: BundleOption): Promise\<boolean>
X
xuezhongzhu 已提交
2840

F
fangjinliang 已提交
2841
根据应用的包获取应用程序是否支持分布式通知(Promise形式)。
Z
zengsiyu 已提交
2842

2843
**系统能力**:SystemCapability.Notification.Notification
Z
zengsiyu 已提交
2844

X
xuzhihao 已提交
2845 2846 2847
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2848

2849
**参数:**
Z
zengsiyu 已提交
2850

2851 2852
| 参数名   | 类型                     | 必填 | 说明                       |
| -------- | ------------------------ | ---- | -------------------------- |
2853
| bundle   | [BundleOption](#bundleoption)             | 是   | 应用的包。                |
Z
zengsiyu 已提交
2854

2855
**返回值:**
X
xuezhongzhu 已提交
2856

2857 2858 2859
| 类型               | 说明            |
| ------------------ | --------------- |
| Promise\<boolean\> | Promise方式返回应用程序是否支持分布式通知的结果。<br/>true 支持。<br/>false 不支持。 |
Z
zengsiyu 已提交
2860

2861
**示例:**
Z
zengsiyu 已提交
2862

2863 2864 2865 2866
```javascript
var bundle = {
    bundle: "bundleName1",
}
Z
zengsiyu 已提交
2867

2868 2869
Notification.isDistributedEnabledByBundle(bundle)
    .then((data) => {
F
fangJinliang1 已提交
2870
        console.info("isDistributedEnabledByBundle sucess, data: " + JSON.stringify(data));
2871 2872
    });
```
Z
zengsiyu 已提交
2873

X
xuezhongzhu 已提交
2874

2875
## Notification.getDeviceRemindType<sup>8+</sup>
Z
zengsiyu 已提交
2876

X
xuzhihao 已提交
2877
getDeviceRemindType(callback: AsyncCallback\<DeviceRemindType\>): void
Z
zengsiyu 已提交
2878

F
fangjinliang 已提交
2879
获取通知的提醒方式(Callback形式)。
Z
zengsiyu 已提交
2880

2881
**系统能力**:SystemCapability.Notification.Notification
Z
zengsiyu 已提交
2882

X
xuzhihao 已提交
2883 2884 2885
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2886

2887
**参数:**
X
xuezhongzhu 已提交
2888

2889 2890
| 参数名   | 类型                               | 必填 | 说明                       |
| -------- | --------------------------------- | ---- | -------------------------- |
R
RayShih 已提交
2891
| callback | AsyncCallback\<[DeviceRemindType](#deviceremindtype8)\> | 是   | 获取通知的提醒方式的回调函数。 |
Z
zengsiyu 已提交
2892

2893
**示例:**
Z
zengsiyu 已提交
2894

2895 2896
```javascript
function getDeviceRemindTypeCallback(data) {
F
fangJinliang1 已提交
2897 2898 2899 2900 2901
    if (err.code) {
        console.info("getDeviceRemindType failed " + JSON.stringify(err));
    } else {
        console.info("getDeviceRemindType success");
    }
2902
};
Z
zengsiyu 已提交
2903

2904 2905
Notification.getDeviceRemindType(getDeviceRemindTypeCallback);
```
Z
zengsiyu 已提交
2906

X
xuezhongzhu 已提交
2907

Z
zengsiyu 已提交
2908

2909
## Notification.getDeviceRemindType<sup>8+</sup>
Z
zengsiyu 已提交
2910

X
xuzhihao 已提交
2911
getDeviceRemindType(): Promise\<DeviceRemindType\>
Z
zengsiyu 已提交
2912

F
fangjinliang 已提交
2913
获取通知的提醒方式(Promise形式)。
Z
zengsiyu 已提交
2914

2915
**系统能力**:SystemCapability.Notification.Notification
X
xuezhongzhu 已提交
2916

X
xuzhihao 已提交
2917 2918 2919
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
2920

2921
**返回值:**
Z
zengsiyu 已提交
2922

2923 2924
| 类型               | 说明            |
| ------------------ | --------------- |
R
RayShih 已提交
2925
| Promise\<[DeviceRemindType](#deviceremindtype8)\> | Promise方式返回通知的提醒方式的结果。 |
Z
zengsiyu 已提交
2926

2927
**示例:**
Z
zengsiyu 已提交
2928

2929 2930 2931
```javascript
Notification.getDeviceRemindType()
    .then((data) => {
F
fangJinliang1 已提交
2932
        console.info("getDeviceRemindType sucess, data: " + JSON.stringify(data));
2933 2934
    });
```
Z
zengsiyu 已提交
2935

X
xuzhihao 已提交
2936

2937 2938 2939 2940 2941 2942 2943 2944
## Notification.publishAsBundle<sup>9+</sup>

publishAsBundle(request: NotificationRequest, representativeBundle: string, userId: number, callback: AsyncCallback\<void\>): void

发布代理通知(callback形式)。

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

X
xuzhihao 已提交
2945
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER,ohos.permission.NOTIFICATION_AGENT_CONTROLLER
2946

X
xuzhihao 已提交
2947
**系统API**: 此接口为系统接口,三方应用不支持调用。
2948

X
xuzhihao 已提交
2949
**参数:**
2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962

| 参数名               | 类型                                        | 必填 | 说明                                          |
| -------------------- | ------------------------------------------- | ---- | --------------------------------------------- |
| request              | [NotificationRequest](#notificationrequest) | 是   | 设置要发布通知内容的NotificationRequest对象。 |
| representativeBundle | string                                      | 是   | 被代理应用的包名。                            |
| userId               | number                                      | 是   | 接收通知用户的Id。                            |
| callback             | AsyncCallback                               | 是   | 发布代理通知的回调方法。                      |

**示例:**

```js
//publishAsBundle回调
function publishAsBundleCallback(err) {
F
fangJinliang1 已提交
2963 2964 2965 2966 2967
    if (err.code) {
        console.info("publishAsBundle failed " + JSON.stringify(err));
    } else {
        console.info("publishAsBundle success");
    }
2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985
}
// 被代理应用的包名
let representativeBundle = "com.example.demo"
// 接收通知的用户ID
let userId = 100
//通知Request对象
let notificationRequest = {
    id: 1,
    content: {
        contentType: Notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
        normal: {
            title: "test_title",
            text: "test_text",
            additionalText: "test_additionalText"
        }
    }
}

2986
Notification.publishAsBundle(notificationRequest, representativeBundle, userId, publishAsBundleCallback);
2987 2988 2989 2990 2991 2992 2993 2994 2995 2996
```

## Notification.publishAsBundle<sup>9+</sup>

publishAsBundle(request: NotificationRequest, representativeBundle: string, userId: number): Promise\<void\>

发布代理通知(Promise形式)。

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

X
xuzhihao 已提交
2997 2998 2999
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER,ohos.permission.NOTIFICATION_AGENT_CONTROLLER

**系统API**: 此接口为系统接口,三方应用不支持调用。
3000

3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030
**参数:**


| 参数名               | 类型                                        | 必填 | 说明                                          |
| -------------------- | ------------------------------------------- | ---- | --------------------------------------------- |
| request              | [NotificationRequest](#notificationrequest) | 是   | 设置要发布通知内容的NotificationRequest对象。 |
| representativeBundle | string                                      | 是   | 被代理应用的包名。                            |
| userId               | number                                      | 是   | 接收通知用户的Id。                            |

**示例:**

```js
// 被代理应用的包名
let representativeBundle = "com.example.demo"
// 接收通知的用户ID
let userId = 100
//通知Request对象
var notificationRequest = {
    id: 1,
    content: {
        contentType: Notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
        normal: {
            title: "test_title",
            text: "test_text",
            additionalText: "test_additionalText"
        }
    }
}

Notification.publishAsBundle(notificationRequest, representativeBundle, userId).then(() => {
F
fangJinliang1 已提交
3031
	console.info("publishAsBundle sucess");
3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042
});
```

## Notification.cancelAsBundle<sup>9+</sup>

cancelAsBundle(id: number, representativeBundle: string, userId: number, callback: AsyncCallback\<void\>): void

取消代理通知(callback形式)。

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

X
xuzhihao 已提交
3043 3044
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
3045 3046
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER,ohos.permission.NOTIFICATION_AGENT_CONTROLLER

X
xuzhihao 已提交
3047
**系统API**: 此接口为系统接口,三方应用不支持调用。
3048

X
xuzhihao 已提交
3049
**参数:**
3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062

| 参数名               | 类型          | 必填 | 说明                     |
| -------------------- | ------------- | ---- | ------------------------ |
| id                   | number        | 是   | 通知ID。                 |
| representativeBundle | string        | 是   | 被代理应用的包名。       |
| userId               | number        | 是   | 接收通知用户的Id。       |
| callback             | AsyncCallback | 是   | 取消代理通知的回调方法。 |

**示例:**

```js
//cancelAsBundle
function cancelAsBundleCallback(err) {
F
fangJinliang1 已提交
3063 3064 3065 3066 3067
    if (err.code) {
        console.info("cancelAsBundle failed " + JSON.stringify(err));
    } else {
        console.info("cancelAsBundle success");
    }
3068 3069 3070 3071 3072 3073
}
// 被代理应用的包名
let representativeBundle = "com.example.demo"
// 接收通知的用户ID
let userId = 100

3074
Notification.cancelAsBundle(0, representativeBundle, userId, cancelAsBundleCallback);
3075 3076 3077 3078
```

## Notification.cancelAsBundle<sup>9+</sup>

X
xuzhihao 已提交
3079
cancelAsBundle(id: number, representativeBundle: string, userId: number): Promise\<void\>
3080 3081 3082 3083 3084

发布代理通知(Promise形式)。

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

X
xuzhihao 已提交
3085 3086
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
3087 3088
**需要权限**: ohos.permission.NOTIFICATION_CONTROLLER,ohos.permission.NOTIFICATION_AGENT_CONTROLLER

X
xuzhihao 已提交
3089
**系统API**: 此接口为系统接口,三方应用不支持调用。
3090

X
xuzhihao 已提交
3091
**参数:**
3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107

| 参数名               | 类型   | 必填 | 说明               |
| -------------------- | ------ | ---- | ------------------ |
| id                   | number | 是   | 通知ID。           |
| representativeBundle | string | 是   | 被代理应用的包名。 |
| userId               | number | 是   | 接收通知用户的Id。 |

**示例:**

```js
// 被代理应用的包名
let representativeBundle = "com.example.demo"
// 接收通知的用户ID
let userId = 100

Notification.cancelAsBundle(0, representativeBundle, userId).then(() => {
F
fangJinliang1 已提交
3108
	console.info("cancelAsBundle success");
3109 3110 3111
});
```

F
fangjinliang 已提交
3112
## Notification.enableNotificationSlot <sup>9+</sup>
F
fangjinliang 已提交
3113

X
xuzhihao 已提交
3114
enableNotificationSlot(bundle: BundleOption, type: SlotType, enable: boolean, callback: AsyncCallback\<void>): void
F
fangjinliang 已提交
3115 3116 3117 3118 3119

设定指定类型的渠道使能状态(Callback形式)。

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

3120 3121
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
3122 3123
**需要权限**:ohos.permission.NOTIFICATION_CONTROLLER

F
fangjinliang 已提交
3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137
**参数:**

| 参数名   | 类型                          | 必填 | 说明                   |
| -------- | ----------------------------- | ---- | ---------------------- |
| bundle   | [BundleOption](#bundleoption) | 是   | 指定包信息。           |
| type     | [SlotType](#slottype)         | 是   | 指定渠道类型。         |
| enable   | boolean                       | 是   | 使能状态。             |
| callback | AsyncCallback\<void\>         | 是   | 设定渠道使能回调函数。 |

**示例:**

```js
//enableNotificationSlot
function enableSlotCallback(err) {
F
fangJinliang1 已提交
3138 3139 3140 3141 3142
    if (err.code) {
        console.info("enableNotificationSlot failed " + JSON.stringify(err));
    } else {
        console.info("enableNotificationSlot success");
    }
F
fangjinliang 已提交
3143 3144 3145 3146
};

Notification.enableNotificationSlot(
    { bundle: "ohos.samples.notification", },
X
xuzhihao 已提交
3147
    Notification.SlotType.SOCIAL_COMMUNICATION,
F
fangjinliang 已提交
3148 3149 3150 3151
    true,
    enableSlotCallback);
```

F
fangjinliang 已提交
3152
## Notification.enableNotificationSlot <sup>9+</sup>
F
fangjinliang 已提交
3153

X
xuzhihao 已提交
3154
enableNotificationSlot(bundle: BundleOption, type: SlotType, enable: boolean): Promise\<void> 
F
fangjinliang 已提交
3155 3156 3157 3158 3159

设定指定类型的渠道使能状态(Promise形式)。

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

3160 3161
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
3162 3163
**需要权限**:ohos.permission.NOTIFICATION_CONTROLLER

F
fangjinliang 已提交
3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177
**参数:**

| 参数名 | 类型                          | 必填 | 说明           |
| ------ | ----------------------------- | ---- | -------------- |
| bundle | [BundleOption](#bundleoption) | 是   | 指定包信息。   |
| type   | [SlotType](#slottype)         | 是   | 指定渠道类型。 |
| enable | boolean                       | 是   | 使能状态。     |

**示例:**

```js
//enableNotificationSlot
Notification.enableNotificationSlot(
    { bundle: "ohos.samples.notification", },
X
xuzhihao 已提交
3178
    Notification.SlotType.SOCIAL_COMMUNICATION,
F
fangjinliang 已提交
3179
    true).then(() => {
F
fangJinliang1 已提交
3180
        console.info("enableNotificationSlot sucess");
F
fangjinliang 已提交
3181 3182 3183
    });
```

F
fangjinliang 已提交
3184
## Notification.isNotificationSlotEnabled <sup>9+</sup>
F
fangjinliang 已提交
3185

X
xuzhihao 已提交
3186
isNotificationSlotEnabled(bundle: BundleOption, type: SlotType, callback: AsyncCallback\<boolean\>): void
F
fangjinliang 已提交
3187 3188 3189 3190 3191

获取指定类型的渠道使能状态(Callback形式)。

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

3192 3193
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
3194 3195
**需要权限**:ohos.permission.NOTIFICATION_CONTROLLER

F
fangjinliang 已提交
3196 3197 3198 3199 3200 3201
**参数:**

| 参数名   | 类型                          | 必填 | 说明                   |
| -------- | ----------------------------- | ---- | ---------------------- |
| bundle   | [BundleOption](#bundleoption) | 是   | 指定包信息。           |
| type     | [SlotType](#slottype)         | 是   | 指定渠道类型。         |
X
xuzhihao 已提交
3202
| callback | AsyncCallback\<boolean\>         | 是   | 设定渠道使能回调函数。 |
F
fangjinliang 已提交
3203 3204 3205 3206 3207 3208

**示例:**

```js
//isNotificationSlotEnabled
function getEnableSlotCallback(err, data) {
F
fangJinliang1 已提交
3209 3210 3211 3212 3213
    if (err.code) {
        console.info("isNotificationSlotEnabled failed " + JSON.stringify(err));
    } else {
        console.info("isNotificationSlotEnabled success");
    }
F
fangjinliang 已提交
3214 3215 3216 3217
};

Notification.isNotificationSlotEnabled(
    { bundle: "ohos.samples.notification", },
X
xuzhihao 已提交
3218
    Notification.SlotType.SOCIAL_COMMUNICATION,
F
fangjinliang 已提交
3219 3220 3221
    getEnableSlotCallback);
```

F
fangjinliang 已提交
3222
## Notification.isNotificationSlotEnabled <sup>9+</sup>
F
fangjinliang 已提交
3223

X
xuzhihao 已提交
3224
isNotificationSlotEnabled(bundle: BundleOption, type: SlotType): Promise\<boolean\>  
F
fangjinliang 已提交
3225 3226 3227 3228 3229

获取指定类型的渠道使能状态(Promise形式)。

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

3230 3231
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
3232 3233
**需要权限**:ohos.permission.NOTIFICATION_CONTROLLER

F
fangjinliang 已提交
3234 3235 3236 3237 3238 3239 3240
**参数:**

| 参数名 | 类型                          | 必填 | 说明           |
| ------ | ----------------------------- | ---- | -------------- |
| bundle | [BundleOption](#bundleoption) | 是   | 指定包信息。   |
| type   | [SlotType](#slottype)         | 是   | 指定渠道类型。 |

X
xuzhihao 已提交
3241 3242 3243 3244 3245 3246
**返回值:**

| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<boolean\> | 以Promise形式返回指定类型的渠道使能状态。 |

F
fangjinliang 已提交
3247 3248 3249 3250 3251 3252
**示例:**

```js
//isNotificationSlotEnabled
Notification.isNotificationSlotEnabled(
    { bundle: "ohos.samples.notification", },
X
xuzhihao 已提交
3253 3254
    Notification.SlotType.SOCIAL_COMMUNICATION
    ).then((data) => {
F
fangJinliang1 已提交
3255
      console.info("isNotificationSlotEnabled success, data: " + JSON.stringify(data));
F
fangjinliang 已提交
3256 3257 3258
    });
```

X
xuzhihao 已提交
3259

F
fangJinliang1 已提交
3260
## Notification.setSyncNotificationEnabledWithoutApp<sup>9+</sup>
X
xuzhihao 已提交
3261

F
fangJinliang1 已提交
3262
setSyncNotificationEnabledWithoutApp(userId: number, enable: boolean, callback: AsyncCallback\<void\>): void
X
xuzhihao 已提交
3263 3264 3265 3266 3267 3268 3269 3270 3271

设置是否将通知同步到未安装应用程序的设备(callback形式)。

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

**系统API**:此接口为系统接口,三方应用不支持调用。

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

X
xuzhihao 已提交
3272
**参数:** 
X
xuzhihao 已提交
3273 3274 3275 3276

| 参数名 | 类型                          | 必填 | 说明           |
| ------ | ----------------------------- | ---- | -------------- |
| userId | number | 是   | 用户Id。   |
X
xuzhihao 已提交
3277 3278
| enable | boolean | 是   | 是否启用。<br>true:启用。<br>false:禁用。   |
| callback | AsyncCallback\<void\>    | 是   | 设置是否将通知同步到未安装应用程序的设备的回调函数。 |
X
xuzhihao 已提交
3279 3280 3281 3282 3283 3284 3285

**示例:**

```js
let userId = 100;
let enable = true;

F
fangJinliang1 已提交
3286
function setSyncNotificationEnabledWithoutAppCallback(err) {
F
fangJinliang1 已提交
3287 3288 3289 3290 3291
    if (err.code) {
        console.info("setSyncNotificationEnabledWithoutApp failed " + JSON.stringify(err));
    } else {
        console.info("setSyncNotificationEnabledWithoutApp success");
    }
X
xuzhihao 已提交
3292 3293
}

F
fangJinliang1 已提交
3294
Notification.setSyncNotificationEnabledWithoutApp(userId, enable, setSyncNotificationEnabledWithoutAppCallback);
X
xuzhihao 已提交
3295 3296 3297
```


F
fangJinliang1 已提交
3298
## Notification.setSyncNotificationEnabledWithoutApp<sup>9+</sup>
X
xuzhihao 已提交
3299

F
fangJinliang1 已提交
3300
setSyncNotificationEnabledWithoutApp(userId: number, enable: boolean): Promise\<void>
X
xuzhihao 已提交
3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314

设置是否将通知同步到未安装应用程序的设备(Promise形式)。

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

**系统API**:此接口为系统接口,三方应用不支持调用。

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

**参数:**

| 参数名 | 类型                          | 必填 | 说明           |
| ------ | ----------------------------- | ---- | -------------- |
| userId | number | 是   | 用户Id。   |
X
xuzhihao 已提交
3315 3316 3317 3318 3319 3320 3321
| enable | boolean | 是   | 是否启用。<br>true:启用。<br>false:禁用。   |

**返回值:**

| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
| Promise\<void\> | 以Promise形式返回设置是否将通知同步到未安装应用程序的设备的结果。 |
X
xuzhihao 已提交
3322 3323 3324 3325 3326 3327 3328

**示例:**

```js
let userId = 100;
let enable = true;

F
fangJinliang1 已提交
3329
Notification.setSyncNotificationEnabledWithoutApp(userId, enable)
F
fangJinliang1 已提交
3330 3331
    .then(() => {
        console.info('setSyncNotificationEnabledWithoutApp');
X
xuzhihao 已提交
3332 3333
    })
    .catch((err) => {
F
fangJinliang1 已提交
3334
        console.info('setSyncNotificationEnabledWithoutApp, err:', err);
X
xuzhihao 已提交
3335 3336 3337 3338
    });
```


F
fangJinliang1 已提交
3339
## Notification.getSyncNotificationEnabledWithoutApp<sup>9+</sup>
X
xuzhihao 已提交
3340

F
fangJinliang1 已提交
3341
getSyncNotificationEnabledWithoutApp(userId: number, callback: AsyncCallback\<boolean>): void
X
xuzhihao 已提交
3342

X
xuzhihao 已提交
3343
获取是否同步通知到未安装应用程序的设备(callback形式)。
X
xuzhihao 已提交
3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355

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

**系统API**:此接口为系统接口,三方应用不支持调用。

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

**参数:**

| 参数名 | 类型                          | 必填 | 说明           |
| ------ | ----------------------------- | ---- | -------------- |
| userId | number | 是   | 用户Id。   |
X
xuzhihao 已提交
3356
| callback | AsyncCallback\<boolean\>         | 是   | 设置是否将通知同步到未安装应用程序的设备的回调函数。<br>true: 是。<br>false: 否。 |
X
xuzhihao 已提交
3357 3358 3359 3360 3361 3362

**示例:**

```js
let userId = 100;

X
xuzhihao 已提交
3363 3364
function getSyncNotificationEnabledWithoutAppCallback(data, err) {
    if (err) {
F
fangJinliang1 已提交
3365
        console.info('getSyncNotificationEnabledWithoutAppCallback, err' + err);
X
xuzhihao 已提交
3366
    } else {
F
fangJinliang1 已提交
3367
        console.info('getSyncNotificationEnabledWithoutAppCallback, data' + data);
X
xuzhihao 已提交
3368
    }
X
xuzhihao 已提交
3369 3370
}

F
fangJinliang1 已提交
3371
Notification.getSyncNotificationEnabledWithoutApp(userId, getSyncNotificationEnabledWithoutAppCallback);
X
xuzhihao 已提交
3372 3373 3374
```


F
fangJinliang1 已提交
3375
## Notification.getSyncNotificationEnabledWithoutApp<sup>9+</sup>
X
xuzhihao 已提交
3376

F
fangJinliang1 已提交
3377
getSyncNotificationEnabledWithoutApp(userId: number): Promise\<boolean>
X
xuzhihao 已提交
3378

X
xuzhihao 已提交
3379
获取是否同步通知到未安装应用程序的设备(Promise形式)。
X
xuzhihao 已提交
3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396

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

**系统API**:此接口为系统接口,三方应用不支持调用。

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

**参数:**

| 参数名 | 类型                          | 必填 | 说明           |
| ------ | ----------------------------- | ---- | -------------- |
| userId | number | 是   | 用户Id。   |

**返回值:**

| 类型                                                        | 说明                                                         |
| ----------------------------------------------------------- | ------------------------------------------------------------ |
X
xuzhihao 已提交
3397
| Promise\<boolean\> | 以Promise形式返回获取是否同步通知到未安装应用程序的设备的结果。<br>true: 是。<br>false: 否。 |
X
xuzhihao 已提交
3398 3399 3400 3401 3402 3403

**示例:**

```js
let userId = 100;

F
fangJinliang1 已提交
3404
Notification.getSyncNotificationEnabledWithoutApp(userId)
X
xuzhihao 已提交
3405
    .then((data) => {
F
fangJinliang1 已提交
3406
        console.info('getSyncNotificationEnabledWithoutApp, data:', data);
X
xuzhihao 已提交
3407 3408
    })
    .catch((err) => {
F
fangJinliang1 已提交
3409
        console.info('getSyncNotificationEnabledWithoutApp, err:', err);
X
xuzhihao 已提交
3410 3411 3412 3413 3414
    });
```



3415 3416
## NotificationSubscriber

Z
ces doc  
zhuhan 已提交
3417 3418
提供订阅者接收到新通知或取消通知时的回调方法。

3419 3420
**系统API**:此接口为系统接口,三方应用不支持调用。

3421 3422
### onConsume

X
xuzhihao 已提交
3423
onConsume?: (data: [SubscribeCallbackData](#subscribecallbackdata)) => void
3424 3425 3426 3427 3428

接收通知回调函数。

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

Z
ces doc  
zhuhan 已提交
3429
**系统接口**: 此接口为系统接口,三方应用不支持调用。
X
xuzhihao 已提交
3430

3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ------------------------ | ---- | -------------------------- |
| data | AsyncCallback\<[SubscribeCallbackData](#subscribecallbackdata)\> | 是 | 回调返回接收到的通知信息。 |

**示例:**

```javascript
function subscribeCallback(err) {
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribeCallback");
    }
};

function onConsumeCallback(data) {
    console.info('===> onConsume in test');
    let req = data.request;
    console.info('===> onConsume callback req.id:' + req.id);
    let wantAgent = data.wantAgent;
    wantAgent .getWant(wantAgent)
        .then((data1) => {
F
fangJinliang1 已提交
3455
            console.info('===> getWant success want:' + JSON.stringify(data1));
3456 3457
        })
        .catch((err) => {
3458
            console.error('===> getWant failed because' + JSON.stringify(err));
3459
        });
3460
    console.info('===> onConsume callback req.wantAgent:' + JSON.stringify(req.wantAgent));
3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471
};

var subscriber = {
    onConsume: onConsumeCallback
};

Notification.subscribe(subscriber, subscribeCallback);
```

### onCancel

X
xuzhihao 已提交
3472
onCancel?:(data: [SubscribeCallbackData](#subscribecallbackdata)) => void
3473 3474 3475 3476 3477

删除通知回调函数。

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

X
xuzhihao 已提交
3478 3479
**系统API**: 此接口为系统接口,三方应用不支持调用。

3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ------------------------ | ---- | -------------------------- |
| data | AsyncCallback\<[SubscribeCallbackData](#subscribecallbackdata)\> | 是 | 回调返回接收到的通知信息。 |

**示例:**

```javascript
function subscribeCallback(err) {
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribeCallback");
    }
};

function onCancelCallback(data) {
    console.info('===> onCancel in test');
    let req = data.request;
    console.info('===> onCancel callback req.id:' + req.id);
}

var subscriber = {
    onCancel: onCancelCallback
};

Notification.subscribe(subscriber, subscribeCallback);
```

### onUpdate

X
xuzhihao 已提交
3512
onUpdate?:(data: [NotificationSortingMap](#notificationsortingmap)) => void
3513 3514 3515 3516 3517

更新通知排序回调函数。

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

X
xuzhihao 已提交
3518 3519
**系统API**: 此接口为系统接口,三方应用不支持调用。

3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ------------------------ | ---- | -------------------------- |
| data | [NotificationSortingMap](#notificationsortingmap) | 是 | 回调返回接收到的通知信息。 |

**示例:**

```javascript
function subscribeCallback(err) {
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribeCallback");
    }
};

function onUpdateCallback() {
    console.info('===> onUpdate in test');
}

var subscriber = {
    onUpdate: onUpdateCallback
};

Notification.subscribe(subscriber, subscribeCallback);
```

### onConnect

X
xuzhihao 已提交
3550
onConnect?:() => void
3551 3552 3553 3554 3555

注册订阅回调函数。

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

X
xuzhihao 已提交
3556 3557
**系统API**: 此接口为系统接口,三方应用不支持调用。

3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581
**示例:**

```javascript
function subscribeCallback(err) {
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribeCallback");
    }
};

function onConnectCallback() {
    console.info('===> onConnect in test');
}

var subscriber = {
    onConnect: onConnectCallback
};

Notification.subscribe(subscriber, subscribeCallback);
```

### onDisconnect

X
xuzhihao 已提交
3582
onDisconnect?:() => void
3583 3584 3585 3586 3587

取消订阅回调函数。

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

X
xuzhihao 已提交
3588 3589
**系统API**: 此接口为系统接口,三方应用不支持调用。

3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613
**示例:**

```javascript
function subscribeCallback(err) {
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribeCallback");
    }
};

function onDisconnectCallback() {
    console.info('===> onDisconnect in test');
}

var subscriber = {
    onDisconnect: onDisconnectCallback
};

Notification.subscribe(subscriber, subscribeCallback);
```

### onDestroy

X
xuzhihao 已提交
3614
onDestroy?:() => void
3615 3616 3617 3618 3619

服务失联回调函数。

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

X
xuzhihao 已提交
3620 3621
**系统API**: 此接口为系统接口,三方应用不支持调用。

3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645
**示例:**

```javascript
function subscribeCallback(err) {
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribeCallback");
    }
};

function onDestroyCallback() {
    console.info('===> onDestroy in test');
}

var subscriber = {
    onDestroy: onDestroyCallback
};

Notification.subscribe(subscriber, subscribeCallback);
```

### onDoNotDisturbDateChange<sup>8+</sup>

X
xuzhihao 已提交
3646
onDoNotDisturbDateChange?:(mode: notification.[DoNotDisturbDate](#donotdisturbdate8)) => void
3647 3648 3649 3650 3651

免打扰时间选项变更回调函数。

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

X
xuzhihao 已提交
3652 3653
**系统API**: 此接口为系统接口,三方应用不支持调用。

3654 3655 3656 3657
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ------------------------ | ---- | -------------------------- |
X
xuzhihao 已提交
3658
| mode | notification.[DoNotDisturbDate](#donotdisturbdate8) | 是 | 回调返回免打扰时间选项变更。 |
3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683

**示例:**
```javascript
function subscribeCallback(err) {
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribeCallback");
    }
};

function onDoNotDisturbDateChangeCallback() {
    console.info('===> onDoNotDisturbDateChange in test');
}

var subscriber = {
    onDoNotDisturbDateChange: onDoNotDisturbDateChangeCallback
};

Notification.subscribe(subscriber, subscribeCallback);
```


### onEnabledNotificationChanged<sup>8+</sup>

X
xuzhihao 已提交
3684
onEnabledNotificationChanged?:(callbackData: [EnabledNotificationCallbackData](#enablednotificationcallbackdata8)) => void
3685 3686 3687 3688 3689

监听应用通知使能变化。

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

X
xuzhihao 已提交
3690 3691
**系统API**: 此接口为系统接口,三方应用不支持调用。

3692 3693 3694 3695
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ------------------------ | ---- | -------------------------- |
R
RayShih 已提交
3696
| callback | AsyncCallback\<[EnabledNotificationCallbackData](#enablednotificationcallbackdata8)\> | 是 | 回调返回监听到的应用信息。 |
3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708

**示例:**

```javascript
function subscribeCallback(err) {
    if (err.code) {
        console.info("subscribe failed " + JSON.stringify(err));
    } else {
        console.info("subscribeCallback");
    }
};

3709 3710 3711 3712
function onEnabledNotificationChangedCallback(callbackData) {
    console.info("bundle: ", callbackData.bundle);
    console.info("uid: ", callbackData.uid);
    console.info("enable: ", callbackData.enable);
3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725
};

var subscriber = {
    onEnabledNotificationChanged: onEnabledNotificationChangedCallback
};

Notification.subscribe(subscriber, subscribeCallback);
```

## SubscribeCallbackData

**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

3726 3727
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
3728 3729 3730 3731 3732 3733 3734
| 名称            | 可读 | 可写 | 类型                                              | 描述     |
| --------------- | ---- | --- | ------------------------------------------------- | -------- |
| request         | 是  | 否  | [NotificationRequest](#notificationrequest)       | 通知内容。 |
| sortingMap      | 是  | 否  | [NotificationSortingMap](#notificationsortingmap) | 排序信息。 |
| reason          | 是  | 否  | number                                            | 删除原因。 |
| sound           | 是  | 否  | string                                            | 通知声音。 |
| vibrationValues | 是  | 否  | Array\<number\>                                   | 通知震动。 |
3735 3736 3737 3738 3739 3740


## EnabledNotificationCallbackData<sup>8+</sup>

**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

3741 3742
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
3743 3744 3745 3746 3747
| 名称   | 可读 | 可写 | 类型    | 描述             |
| ------ | ---- | --- | ------- | ---------------- |
| bundle | 是  | 否  | string  | 应用的包名。       |
| uid    | 是  | 否  | number  | 应用的uid。        |
| enable | 是  | 否  | boolean | 应用通知使能状态。 |
3748

X
xuezhongzhu 已提交
3749

X
xuzhihao 已提交
3750
## DoNotDisturbDate<sup>8+</sup>
Z
zhaoyuan17 已提交
3751

3752
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
3753

3754 3755
**系统API**:此接口为系统接口,三方应用不支持调用。

3756 3757
| 名称  | 可读 | 可写 | 类型                                  | 描述                     |
| ----- | ---- | --- | ------------------------------------- | ------------------------ |
3758
| type  | 是  | 否  | [DoNotDisturbType](#donotdisturbtype8) | 指定免打扰设置的时间类型。 |
3759 3760
| begin | 是  | 否  | Date                                  | 指定免打扰设置的起点时间。 |
| end   | 是  | 否  | Date                                  | 指定免打扰设置的终点时间。 |
Z
zhaoyuan17 已提交
3761 3762 3763



3764
## DoNotDisturbType<sup>8+</sup>
Z
zhaoyuan17 已提交
3765

3766
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
3767

X
xuzhihao 已提交
3768
**系统API**: 此接口为系统接口,三方应用不支持调用。
Z
zhaoyuan17 已提交
3769

3770 3771
| 名称         | 值               | 说明                                       |
| ------------ | ---------------- | ------------------------------------------ |
3772 3773 3774 3775
| TYPE_NONE    | 0 | 非通知勿扰类型。                           |
| TYPE_ONCE    | 1 | 以设置时间段(只看小时和分钟)一次执行勿扰。 |
| TYPE_DAILY   | 2 | 以设置时间段(只看小时和分钟)每天执行勿扰。 |
| TYPE_CLEARLY | 3 | 以设置时间段(明确年月日时分)执行勿扰。     |
Z
zhaoyuan17 已提交
3776 3777


3778
## ContentType
Z
zhaoyuan17 已提交
3779

3780
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
3781

3782 3783
| 名称                              | 值          | 说明               |
| --------------------------------- | ----------- | ------------------ |
3784 3785 3786 3787 3788
| NOTIFICATION_CONTENT_BASIC_TEXT   | NOTIFICATION_CONTENT_BASIC_TEXT | 普通类型通知。     |
| NOTIFICATION_CONTENT_LONG_TEXT    | NOTIFICATION_CONTENT_LONG_TEXT | 长文本类型通知。   |
| NOTIFICATION_CONTENT_PICTURE      | NOTIFICATION_CONTENT_PICTURE | 图片类型通知。     |
| NOTIFICATION_CONTENT_CONVERSATION | NOTIFICATION_CONTENT_CONVERSATION | 社交类型通知。     |
| NOTIFICATION_CONTENT_MULTILINE    | NOTIFICATION_CONTENT_MULTILINE | 多行文本类型通知。 |
Z
zhaoyuan17 已提交
3789

X
xuzhihao 已提交
3790
## SlotLevel
Z
zhaoyuan17 已提交
3791

3792
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
3793

X
xuzhihao 已提交
3794 3795 3796
| 名称                              | 值          | 说明               |
| --------------------------------- | ----------- | ------------------ |
| LEVEL_NONE                        | 0           | 表示关闭通知功能。     |
F
fangjinliang 已提交
3797 3798 3799 3800
| LEVEL_MIN                         | 1           | 表示通知功能已启用,但状态栏中不显示通知图标,且没有横幅或提示音。 |
| LEVEL_LOW                         | 2           | 表示通知功能已启用,且状态栏中显示通知图标,但没有横幅或提示音。 |
| LEVEL_DEFAULT                     | 3           | 表示通知功能已启用,状态栏中显示通知图标,没有横幅但有提示音。 |
| LEVEL_HIGH                        | 4           | 表示通知功能已启用,状态栏中显示通知图标,有横幅和提示音。 |
Z
zhaoyuan17 已提交
3801 3802


3803
## BundleOption
Z
zhaoyuan17 已提交
3804

3805
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
3806

X
xuzhihao 已提交
3807 3808 3809 3810
| 名称   | 可读 | 可写 | 类型   | 描述   |
| ------ | ---- | --- | ------ | ------ |
| bundle | 是  | 是  | string | 包名。   |
| uid    | 是  | 是  | number | 用户id。 |
Z
zhaoyuan17 已提交
3811 3812 3813



3814
## NotificationKey
Z
zhaoyuan17 已提交
3815

3816
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
3817

X
xuzhihao 已提交
3818 3819 3820 3821
| 名称  | 可读 | 可写 | 类型   | 描述     |
| ----- | ---- | --- | ------ | -------- |
| id    | 是  | 是  | number | 通知ID。   |
| label | 是  | 是  | string | 通知标签。 |
Z
zhaoyuan17 已提交
3822 3823


3824
## SlotType
Z
zhaoyuan17 已提交
3825

3826
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification
Z
zhaoyuan17 已提交
3827

3828 3829
| 名称                 | 值       | 说明       |
| -------------------- | -------- | ---------- |
3830 3831 3832 3833 3834
| UNKNOWN_TYPE         | 0 | 未知类型。 |
| SOCIAL_COMMUNICATION | 1 | 社交类型。 |
| SERVICE_INFORMATION  | 2 | 服务类型。 |
| CONTENT_INFORMATION  | 3 | 内容类型。 |
| OTHER_TYPES          | 0xFFFF | 其他类型。 |
3835 3836 3837 3838


## NotificationActionButton

Z
ces doc  
zhuhan 已提交
3839 3840
描述通知中显示的操作按钮。

3841 3842
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
3843 3844 3845 3846 3847 3848
| 名称      | 可读 | 可写 | 类型                                            | 描述                      |
| --------- | --- | ---- | ----------------------------------------------- | ------------------------- |
| title     | 是  | 是  | string                                          | 按钮标题。                  |
| wantAgent | 是  | 是  | WantAgent                                       | 点击按钮时触发的WantAgent。 |
| extras    | 是  | 是  | { [key: string]: any }                          | 按钮扩展信息。              |
| userInput<sup>8+</sup> | 是  | 是  | [NotificationUserInput](#notificationuserinput8) | 用户输入对象实例。          |
3849 3850 3851 3852


## NotificationBasicContent

Z
ces doc  
zhuhan 已提交
3853 3854
描述普通文本通知。

3855 3856
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
3857 3858 3859 3860 3861
| 名称           | 可读 | 可写 | 类型   | 描述                               |
| -------------- | ---- | ---- | ------ | ---------------------------------- |
| title          | 是   | 是   | string | 通知标题。                         |
| text           | 是   | 是   | string | 通知内容。                         |
| additionalText | 是   | 是   | string | 通知次要内容,是对通知内容的补充。 |
3862 3863 3864 3865


## NotificationLongTextContent

Z
ces doc  
zhuhan 已提交
3866 3867
描述长文本通知。

3868 3869
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
3870 3871 3872 3873 3874 3875 3876 3877
| 名称           | 可读 | 可写 | 类型   | 描述                             |
| -------------- | ---- | --- | ------ | -------------------------------- |
| title          | 是  | 是  | string | 通知标题。                         |
| text           | 是  | 是  | string | 通知内容。                         |
| additionalText | 是  | 是  | string | 通知次要内容,是对通知内容的补充。 |
| longText       | 是  | 是  | string | 通知的长文本。                     |
| briefText      | 是  | 是  | string | 通知概要内容,是对通知内容的总结。 |
| expandedTitle  | 是  | 是  | string | 通知展开时的标题。                 |
3878 3879 3880 3881


## NotificationMultiLineContent

Z
ces doc  
zhuhan 已提交
3882 3883
描述多行文本通知。

3884 3885
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
3886 3887 3888 3889 3890 3891 3892 3893
| 名称           | 可读 | 可写 | 类型            | 描述                             |
| -------------- | --- | --- | --------------- | -------------------------------- |
| title          | 是  | 是  | string          | 通知标题。                         |
| text           | 是  | 是  | string          | 通知内容。                         |
| additionalText | 是  | 是  | string          | 通知次要内容,是对通知内容的补充。 |
| briefText      | 是  | 是  | string          | 通知概要内容,是对通知内容的总结。 |
| longTitle      | 是  | 是  | string          | 通知展开时的标题。                 |
| lines          | 是  | 是  | Array\<string\> | 通知的多行文本。                   |
3894 3895 3896 3897


## NotificationPictureContent

Z
ces doc  
zhuhan 已提交
3898 3899
描述附有图片的通知。

3900 3901
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
3902 3903 3904 3905 3906 3907 3908 3909
| 名称           | 可读 | 可写 | 类型           | 描述                             |
| -------------- | ---- | --- | -------------- | -------------------------------- |
| title          | 是  | 是  | string         | 通知标题。                         |
| text           | 是  | 是  | string         | 通知内容。                         |
| additionalText | 是  | 是  | string         | 通知次要内容,是对通知内容的补充。 |
| briefText      | 是  | 是  | string         | 通知概要内容,是对通知内容的总结。 |
| expandedTitle  | 是  | 是  | string         | 通知展开时的标题。                 |
| picture        | 是  | 是  | image.PixelMap | 通知的图片内容。                   |
3910 3911 3912 3913


## NotificationContent

Z
ces doc  
zhuhan 已提交
3914 3915
描述通知类型。

3916 3917
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
3918 3919 3920 3921 3922 3923 3924
| 名称        | 可读 | 可写 | 类型                                                         | 描述               |
| ----------- | ---- | --- | ------------------------------------------------------------ | ------------------ |
| contentType | 是  | 是  | [ContentType](#contenttype)                                  | 通知内容类型。       |
| normal      | 是  | 是  | [NotificationBasicContent](#notificationbasiccontent)        | 基本类型通知内容。   |
| longText    | 是  | 是  | [NotificationLongTextContent](#notificationlongtextcontent)  | 长文本类型通知内容。 |
| multiLine   | 是  | 是  | [NotificationMultiLineContent](#notificationmultilinecontent) | 多行类型通知内容。   |
| picture     | 是  | 是  | [NotificationPictureContent](#notificationpicturecontent)    | 图片类型通知内容。   |
3925 3926 3927 3928


## NotificationFlagStatus<sup>8+</sup>

Z
ces doc  
zhuhan 已提交
3929 3930
描述通知标志状态。

3931 3932
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

Z
ces doc  
zhuhan 已提交
3933
**系统接口**:此接口为系统接口,三方应用不支持调用。
3934

3935 3936 3937 3938 3939 3940 3941 3942 3943
| 名称           | 值  | 描述                               |
| -------------- | --- | --------------------------------- |
| TYPE_NONE      | 0   | 默认标志。                         |
| TYPE_OPEN      | 1   | 通知标志打开。                     |
| TYPE_CLOSE     | 2   | 通知标志关闭。                     |


## NotificationFlags<sup>8+</sup>

Z
ces doc  
zhuhan 已提交
3944 3945
描述通知标志的实例。

3946 3947
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
3948 3949 3950 3951
| 名称             | 可读 | 可写 | 类型                    | 描述                               |
| ---------------- | ---- | ---- | ---------------------- | --------------------------------- |
| soundEnabled     | 是   | 否   | NotificationFlagStatus | 是否启用声音提示。                  |
| vibrationEnabled | 是   | 否   | NotificationFlagStatus | 是否启用振动提醒功能。               |
3952 3953 3954 3955


## NotificationRequest

Z
ces doc  
zhuhan 已提交
3956 3957
描述通知的请求。

3958 3959
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998
| 名称                  | 可读 | 可写 | 类型                                          | 描述                       |
| --------------------- | ---- | --- | --------------------------------------------- | -------------------------- |
| content               | 是  | 是  | [NotificationContent](#notificationcontent)   | 通知内容。                   |
| id                    | 是  | 是  | number                                        | 通知ID。                     |
| slotType              | 是  | 是  | [SlotType](#slottype)                         | 通道类型。                   |
| isOngoing             | 是  | 是  | boolean                                       | 是否进行时通知。             |
| isUnremovable         | 是  | 是  | boolean                                       | 是否可移除。                 |
| deliveryTime          | 是  | 是  | number                                        | 通知发送时间。               |
| tapDismissed          | 是  | 是  | boolean                                       | 通知是否自动清除。           |
| autoDeletedTime       | 是  | 是  | number                                        | 自动清除的时间。             |
| wantAgent             | 是  | 是  | WantAgent                                     | 点击跳转的WantAgent。        |
| extraInfo             | 是  | 是  | {[key: string]: any}                          | 扩展参数。                   |
| color                 | 是  | 是  | number                                        | 通知背景颜色。               |
| colorEnabled          | 是  | 是  | boolean                                       | 通知背景颜色是否使能。       |
| isAlertOnce           | 是  | 是  | boolean                                       | 设置是否仅有一次此通知警报。 |
| isStopwatch           | 是  | 是  | boolean                                       | 是否显示已用时间。           |
| isCountDown           | 是  | 是  | boolean                                       | 是否显示倒计时时间。         |
| isFloatingIcon        | 是  | 是  | boolean                                       | 是否显示状态栏图标。         |
| label                 | 是  | 是  | string                                        | 通知标签。                   |
| badgeIconStyle        | 是  | 是  | number                                        | 通知角标类型。               |
| showDeliveryTime      | 是  | 是  | boolean                                       | 是否显示分发时间。           |
| actionButtons         | 是  | 是  | Array\<[NotificationActionButton](#notificationactionbutton)\>             | 通知按钮,最多两个按钮。     |
| smallIcon             | 是  | 是  | PixelMap                                      | 通知小图标。                 |
| largeIcon             | 是  | 是  | PixelMap                                      | 通知大图标。                 |
| creatorBundleName     | 是  | 否  | string                                        | 创建通知的包名。             |
| creatorUid            | 是  | 否  | number                                        | 创建通知的UID。              |
| creatorPid            | 是  | 否  | number                                        | 创建通知的PID。              |
| creatorUserId<sup>8+</sup>| 是  | 否  | number                                    | 创建通知的UserId。           |
| hashCode              | 是  | 否  | string                                        | 通知唯一标识。               |
| classification        | 是  | 是  | string                                        | 通知分类。<br>**系统API**: 此接口为系统接口,三方应用不支持调用。                   |
| groupName<sup>8+</sup>| 是  | 是  | string                                        | 组通知名称。                 |
| template<sup>8+</sup> | 是  | 是  | [NotificationTemplate](#notificationtemplate8) | 通知模板。                   |
| isRemoveAllowed<sup>8+</sup> | 是  | 否  | boolean                                | 通知是否能被移除。<br>**系统API**: 此接口为系统接口,三方应用不支持调用。                   |
| source<sup>8+</sup>   | 是  | 否  | number                                        | 通知源。<br>**系统API**: 此接口为系统接口,三方应用不支持调用。                   |
| distributedOption<sup>8+</sup>   | 是  | 是  | [DistributedOptions](#distributedoptions8)                 | 分布式通知的选项。          |
| deviceId<sup>8+</sup> | 是  | 否  | string                                        | 通知源的deviceId。<br>**系统API**: 此接口为系统接口,三方应用不支持调用。          |
| notificationFlags<sup>8+</sup> | 是  | 否  | [NotificationFlags](#notificationflags8)                    | 获取NotificationFlags。          |
| removalWantAgent<sup>9+</sup> | 是  | 是  | WantAgent                    | 当移除通知时,通知将被重定向到的WantAgent实例。          |
| badgeNumber<sup>9+</sup> | 是  | 是  | number                    | 应用程序图标上显示的通知数。          |
3999 4000 4001 4002


## DistributedOptions<sup>8+</sup>

Z
ces doc  
zhuhan 已提交
4003 4004
描述分布式选项。

4005 4006
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
4007 4008 4009 4010 4011 4012
| 名称                   | 可读 | 可写 | 类型            | 描述                               |
| ---------------------- | ---- | ---- | -------------- | ---------------------------------- |
| isDistributed          | 是   | 是   | boolean        | 是否为分布式通知。                  |
| supportDisplayDevices  | 是   | 是   | Array\<string> | 可以同步通知到的设备类型。           |
| supportOperateDevices  | 是   | 是   | Array\<string> | 可以打开通知的设备。                |
| remindType             | 是   | 否   | number         | 通知的提醒方式。<br>**系统API**: 此接口为系统接口,三方应用不支持调用。                    |
4013 4014 4015 4016


## NotificationSlot

Z
ces doc  
zhuhan 已提交
4017 4018
描述通知槽

4019 4020
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
4021 4022 4023 4024 4025 4026 4027
| 名称                 | 可读 | 可写 | 类型                  | 描述                                       |
| -------------------- | ---- | --- | --------------------- | ------------------------------------------ |
| type                 | 是  | 是  | [SlotType](#slottype) | 通道类型。                                   |
| level                | 是  | 是  | number                | 通知级别,不设置则根据通知渠道类型有默认值。 |
| desc                 | 是  | 是  | string                | 通知渠道描述信息。                           |
| badgeFlag            | 是  | 是  | boolean               | 是否显示角标。                               |
| bypassDnd            | 是  | 是  | boolean               | 置是否在系统中绕过免打扰模式。               |
4028
| lockscreenVisibility | 是  | 是  | number                | 在锁定屏幕上显示通知的模式。                 |
X
xuzhihao 已提交
4029 4030 4031 4032 4033 4034
| vibrationEnabled     | 是  | 是  | boolean               | 是否可振动。                                 |
| sound                | 是  | 是  | string                | 通知提示音。                                 |
| lightEnabled         | 是  | 是  | boolean               | 是否闪灯。                                   |
| lightColor           | 是  | 是  | number                | 通知灯颜色。                                 |
| vibrationValues      | 是  | 是  | Array\<number\>       | 通知振动样式。                               |
| enabled<sup>9+</sup> | 是  | 否  | boolean               | 此通知插槽中的启停状态。                      |
4035 4036 4037 4038


## NotificationSorting

Z
ces doc  
zhuhan 已提交
4039 4040
提供有关活动通知的排序信息。

4041 4042
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
4043
**系统API**: 此接口为系统接口,三方应用不支持调用。
4044

X
xuzhihao 已提交
4045 4046 4047 4048 4049
| 名称     | 可读 | 可写 | 类型                                  | 描述         |
| -------- | ---- | --- | ------------------------------------- | ------------ |
| slot     | 是  | 否  | [NotificationSlot](#notificationslot) | 通知通道内容。 |
| hashCode | 是  | 否  | string                                | 通知唯一标识。 |
| ranking  | 是  | 否  | number                                | 通知排序序号。 |
4050 4051 4052 4053


## NotificationSortingMap

Z
ces doc  
zhuhan 已提交
4054 4055
提供关于已订阅的所有通知中活动通知的排序信息

4056 4057
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

4058 4059
**系统API**:此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
4060 4061 4062 4063
| 名称           | 可读 | 可写 | 类型                                                         | 描述             |
| -------------- | ---- | --- | ------------------------------------------------------------ | ---------------- |
| sortings       | 是  | 否  | {[key: string]: [NotificationSorting](#notificationsorting)} | 通知排序信息数组。 |
| sortedHashCode | 是  | 否  | Array\<string\>                                              | 通知唯一标识数组。 |
4064 4065 4066 4067


## NotificationSubscribeInfo

Z
ces doc  
zhuhan 已提交
4068 4069
设置订阅所需通知的发布者的信息。

4070 4071
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

X
xuzhihao 已提交
4072
**系统API**: 此接口为系统接口,三方应用不支持调用。
4073

X
xuzhihao 已提交
4074 4075 4076 4077
| 名称        | 可读 | 可写 | 类型            | 描述                            |
| ----------- | --- | ---- | --------------- | ------------------------------- |
| bundleNames | 是  | 是  | Array\<string\> | 指定订阅哪些包名的APP发来的通知。 |
| userId      | 是  | 是  | number          | 指定订阅哪个用户下发来的通知。    |
4078 4079 4080 4081


## NotificationTemplate<sup>8+</sup>

Z
ces doc  
zhuhan 已提交
4082 4083
通知模板。

4084 4085 4086 4087 4088 4089 4090 4091 4092 4093
**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

| 名称 | 参数类型               | 可读 | 可写 | 说明       |
| ---- | ---------------------- | ---- | ---- | ---------- |
| name | string                 | 是   | 是   | 模板名称。 |
| data | {[key:string]: Object} | 是   | 是   | 模板数据。 |


## NotificationUserInput<sup>8+</sup>

Z
ces doc  
zhuhan 已提交
4094 4095
保存用户输入的通知消息。

4096 4097
**系统能力**:SystemCapability.Notification.Notification

X
xuzhihao 已提交
4098 4099 4100
| 名称     | 可读 | 可写 | 类型   | 描述                          |
| -------- | --- | ---- | ------ | ----------------------------- |
| inputKey | 是  | 是  | string | 用户输入时用于标识此输入的key。 |
4101 4102 4103 4104 4105 4106


## DeviceRemindType<sup>8+</sup>

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

X
xuzhihao 已提交
4107
**系统API**: 此接口为系统接口,三方应用不支持调用。
4108

4109 4110 4111 4112 4113
| 名称                 | 值  | 描述                               |
| -------------------- | --- | --------------------------------- |
| IDLE_DONOT_REMIND    | 0   | 设备未被使用,无需提醒。            |
| IDLE_REMIND          | 1   | 提醒设备未被使用。                 |
| ACTIVE_DONOT_REMIND  | 2   | 设备正在使用,无需提醒。            |
4114
| ACTIVE_REMIND        | 3   | 提醒设备正在使用。                 |
X
xuzhihao 已提交
4115 4116 4117 4118 4119 4120


## SourceType<sup>8+</sup>

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

X
xuzhihao 已提交
4121 4122
**系统API**: 此接口为系统接口,三方应用不支持调用。

X
xuzhihao 已提交
4123 4124 4125 4126
| 名称                 | 值  | 描述                  |
| -------------------- | --- | -------------------- |
| TYPE_NORMAL          | 0   | 一般通知。            |
| TYPE_CONTINUOUS      | 1   | 连续通知。            |
Z
zero-cyc 已提交
4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138
| TYPE_TIMER           | 2   | 计划通知。            |

## RemoveReason<sup>9+</sup>

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

**系统API**: 此接口为系统接口,三方应用不支持调用。

| 名称                 | 值  | 描述                  |
| -------------------- | --- | -------------------- |
| CLICK_REASON_REMOVE  | 1   | 点击通知后删除通知。    |
| CANCEL_REASON_REMOVE | 2   | 用户删除通知。         |