js-apis-notificationSubscribe.md 34.6 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.notificationSubscribe (NotificationSubscribe模块)
2 3 4 5 6 7 8 9 10 11

本模块提供通知订阅、取消订阅、通知移除等,一般情况下,只有系统应用具有这些操作权限。

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

## 导入模块

```js
12
import notificationSubscribe from '@ohos.notificationSubscribe';
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
```



## NotificationSubscribe.subscribe

subscribe(subscriber: NotificationSubscriber, info: NotificationSubscribeInfo, callback: AsyncCallback\<void\>): void

订阅通知并指定订阅信息(callback形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
31
| 参数名       | 类型                      | 必填 | 说明             |
32
| ---------- | ------------------------- | ---- | ---------------- |
Y
yuyaozhi 已提交
33 34
| subscriber | [NotificationSubscriber](js-apis-notification.md#notificationsubscriber)    | 是   | 通知订阅对象。     |
| info       | [NotificationSubscribeInfo](js-apis-notification.md#notificationsubscribeinfo) | 是   | 通知订阅信息。 |
35 36 37 38
| callback   | AsyncCallback\<void\>     | 是   | 订阅动作回调函数。 |

**错误码:**

F
fangJinliang1 已提交
39 40
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

41 42
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
43 44 45
| 201  | Permission denied.                      |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.             |
46 47 48
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
49
| 1600012  | No memory space.                    |
50 51 52 53 54 55 56

**示例:**

```js
//subscribe回调
function subscribeCallback(err) {
    if (err) {
57
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
58 59 60 61 62 63 64
    } else {
        console.info("subscribe success");
    }
}
function onConsumeCallback(data) {
	console.info("Consume callback: " + JSON.stringify(data));
}
F
fangJinliang1 已提交
65
let subscriber = {
66
    onConsume: onConsumeCallback
F
fangJinliang1 已提交
67 68
};
let info = {
69
    bundleNames: ["bundleName1","bundleName2"]
F
fangJinliang1 已提交
70
};
71
notificationSubscribe.subscribe(subscriber, info, subscribeCallback);
72 73 74 75 76 77
```

## NotificationSubscribe.subscribe

subscribe(subscriber: NotificationSubscriber, callback: AsyncCallback\<void\>): void

F
fangJinliang1 已提交
78
订阅当前用户下所有应用的通知(callback形式)。
79 80 81 82 83 84 85 86 87

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

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

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

**参数:**

F
fangJinliang1 已提交
88
| 参数名       | 类型                   | 必填 | 说明             |
89
| ---------- | ---------------------- | ---- | ---------------- |
Y
yuyaozhi 已提交
90
| subscriber | [NotificationSubscriber](js-apis-notification.md#notificationsubscriber) | 是   | 通知订阅对象。     |
91 92 93 94
| callback   | AsyncCallback\<void\>  | 是   | 订阅动作回调函数。 |

**错误码:**

F
fangJinliang1 已提交
95 96
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

97 98
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
99 100 101
| 201  | Permission denied.                      |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.             |
102 103 104
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
105
| 1600012  | No memory space.                    |
106 107 108 109 110 111

**示例:**

```js
function subscribeCallback(err) {
    if (err) {
112
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
113 114 115 116 117 118 119
    } else {
        console.info("subscribe success");
    }
}
function onConsumeCallback(data) {
	console.info("Consume callback: " + JSON.stringify(data));
}
F
fangJinliang1 已提交
120
let subscriber = {
121
    onConsume: onConsumeCallback
F
fangJinliang1 已提交
122
};
123
notificationSubscribe.subscribe(subscriber, subscribeCallback);
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
```



## NotificationSubscribe.subscribe

subscribe(subscriber: NotificationSubscriber, info?: NotificationSubscribeInfo): Promise\<void\>

订阅通知并指定订阅信息(Promise形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
142
| 参数名       | 类型                      | 必填 | 说明         |
143
| ---------- | ------------------------- | ---- | ------------ |
Y
yuyaozhi 已提交
144 145
| subscriber | [NotificationSubscriber](js-apis-notification.md#notificationsubscriber)    | 是   | 通知订阅对象。 |
| info       | [NotificationSubscribeInfo](js-apis-notification.md#notificationsubscribeinfo) | 否   | 通知订阅信息。   |
146 147 148

**错误码:**

F
fangJinliang1 已提交
149 150
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

151 152
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
153 154 155
| 201  | Permission denied.                      |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.             |
156 157 158
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
159
| 1600012  | No memory space.                    |
160 161 162 163 164

**示例:**

```js
function onConsumeCallback(data) {
F
fangJinliang1 已提交
165
    console.info("Consume callback: " + JSON.stringify(data));
166
}
F
fangJinliang1 已提交
167
let subscriber = {
168 169
    onConsume: onConsumeCallback
};
170
notificationSubscribe.subscribe(subscriber).then(() => {
F
fangJinliang1 已提交
171
	console.info("subscribe success");
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
});
```



## NotificationSubscribe.unsubscribe

unsubscribe(subscriber: NotificationSubscriber, callback: AsyncCallback\<void\>): void

取消订阅(callbcak形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
191
| 参数名       | 类型                   | 必填 | 说明                 |
192
| ---------- | ---------------------- | ---- | -------------------- |
Y
yuyaozhi 已提交
193
| subscriber | [NotificationSubscriber](js-apis-notification.md#notificationsubscriber) | 是   | 通知订阅对象。         |
194 195 196 197
| callback   | AsyncCallback\<void\>  | 是   | 取消订阅动作回调函数。 |

**错误码:**

F
fangJinliang1 已提交
198 199
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

200 201
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
202 203 204
| 201  | Permission denied.                      |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.             |
205 206 207 208 209 210 211 212 213
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |

**示例:**

```js
function unsubscribeCallback(err) {
    if (err) {
214
        console.error(`unsubscribe failed, code is ${err.code}, message is ${err.message}`);
215 216 217 218
    } else {
        console.info("unsubscribe success");
    }
}
Y
yuyaozhi 已提交
219 220
function onDisconnectCallback() {
	console.info("subscribe disconnect");
221
}
F
fangJinliang1 已提交
222
let subscriber = {
F
fangJinliang1 已提交
223
    onDisconnect: onDisconnectCallback
F
fangJinliang1 已提交
224
};
225
notificationSubscribe.unsubscribe(subscriber, unsubscribeCallback);
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
```

## NotificationSubscribe.unsubscribe

unsubscribe(subscriber: NotificationSubscriber): Promise\<void\>

取消订阅(Promise形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
242
| 参数名       | 类型                   | 必填 | 说明         |
243
| ---------- | ---------------------- | ---- | ------------ |
Y
yuyaozhi 已提交
244
| subscriber | [NotificationSubscriber](js-apis-notification.md#notificationsubscriber) | 是   | 通知订阅对象。 |
245 246 247

**错误码:**

F
fangJinliang1 已提交
248 249
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

250 251
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
252 253 254
| 201  | Permission denied.                      |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.             |
255 256 257 258 259 260 261
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |

**示例:**

```js
Y
yuyaozhi 已提交
262 263
function onDisconnectCallback() {
	console.info("subscribe disconnect");
264
}
F
fangJinliang1 已提交
265
let subscriber = {
F
fangJinliang1 已提交
266
    onDisconnect: onDisconnectCallback
267
};
268
notificationSubscribe.unsubscribe(subscriber).then(() => {
F
fangJinliang1 已提交
269
	console.info("unsubscribe success");
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
});
```

## NotificationSubscribe.remove

remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason, callback: AsyncCallback\<void\>): void

删除指定通知(Callback形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
287
| 参数名            | 类型                                | 必填 | 说明                 |
288
| --------------- |   ----------------------------------| ---- | -------------------- |
Y
yuyaozhi 已提交
289
| bundle          | [BundleOption](js-apis-inner-notification-notificationCommonDef.md#bundleoption)       | 是   | 指定应用的包信息。           |
Y
yuyaozhi 已提交
290
| notificationKey | [NotificationKey](js-apis-notification.md#notificationkey) | 是   | 通知键值。             |
291 292 293 294 295
| reason          | [RemoveReason](#removereason)      | 是   | 通知删除原因。         |
| callback        | AsyncCallback\<void\>               | 是   | 删除指定通知回调函数。 |

**错误码:**

F
fangJinliang1 已提交
296 297
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

298 299
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
300 301 302
| 201  | Permission denied.                           |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.                  |
303 304 305 306 307 308 309 310 311 312 313
| 1600001  | Internal error.                          |
| 1600002  | Marshalling or unmarshalling error.      |
| 1600003  | Failed to connect service.               |
| 1600007  | The notification is not exist.           |
| 17700001 | The specified bundle name was not found. |

**示例:**

```js
function removeCallback(err) {
    if (err) {
314
        console.error(`remove failed, code is ${err.code}, message is ${err.message}`);
315 316 317 318
    } else {
        console.info("remove success");
    }
}
F
fangJinliang1 已提交
319
let bundle = {
320
    bundle: "bundleName1",
F
fangJinliang1 已提交
321 322
};
let notificationKey = {
323 324
    id: 0,
    label: "label",
F
fangJinliang1 已提交
325
};
326 327
let reason = notificationSubscribe.RemoveReason.CLICK_REASON_REMOVE;
notificationSubscribe.remove(bundle, notificationKey, reason, removeCallback);
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
```



## NotificationSubscribe.remove

remove(bundle: BundleOption, notificationKey: NotificationKey, reason: RemoveReason): Promise\<void\>

删除指定通知(Promise形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
346
| 参数名            | 类型            | 必填 | 说明       |
347
| --------------- | --------------- | ---- | ---------- |
Y
yuyaozhi 已提交
348
| bundle          | [BundleOption](js-apis-inner-notification-notificationCommonDef.md#bundleoption)    | 是   | 指定应用的包信息。 |
Y
yuyaozhi 已提交
349
| notificationKey | [NotificationKey]((js-apis-notification.md#notificationkey)) | 是   | 通知键值。   |
350 351 352 353
| reason          | [RemoveReason](#removereason) | 是   | 通知删除原因。         |

**错误码:**

F
fangJinliang1 已提交
354 355
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

356 357
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
358 359 360
| 201  | Permission denied.                           |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.                  |
361 362 363 364 365 366 367 368 369
| 1600001  | Internal error.                          |
| 1600002  | Marshalling or unmarshalling error.      |
| 1600003  | Failed to connect service.               |
| 1600007  | The notification is not exist.           |
| 17700001 | The specified bundle name was not found. |

**示例:**

```js
F
fangJinliang1 已提交
370
let bundle = {
371
    bundle: "bundleName1",
F
fangJinliang1 已提交
372 373
};
let notificationKey = {
374 375
    id: 0,
    label: "label",
F
fangJinliang1 已提交
376 377
};
let reason = NotificationSubscribe.RemoveReason.CLICK_REASON_REMOVE;
378
notificationSubscribe.remove(bundle, notificationKey, reason).then(() => {
F
fangJinliang1 已提交
379
	console.info("remove success");
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
});
```

## NotificationSubscribe.remove

remove(hashCode: string, reason: RemoveReason, callback: AsyncCallback\<void\>): void

删除指定通知(Callback形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
397
| 参数名     | 类型                  | 必填 | 说明                 |
398
| -------- | --------------------- | ---- | -------------------- |
Y
yuyaozhi 已提交
399
| hashCode | string                | 是   | 通知唯一ID。可以通过[onConsume](#onconsume)回调的入参[SubscribeCallbackData](js-apis-notification.md#subscribecallbackdata)获取其内部[NotificationRequest](js-apis-inner-notification-notificationRequest.md#notificationrequest)对象中的hashCode。 |
400 401 402 403 404
| reason   | [RemoveReason](#removereason) | 是   | 通知删除原因。         |
| callback | AsyncCallback\<void\> | 是   | 删除指定通知回调函数。 |

**错误码:**

F
fangJinliang1 已提交
405 406
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

407 408
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
409 410 411
| 201  | Permission denied.                           |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.                  |
412 413 414 415 416 417 418 419
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
| 1600007  | The notification is not exist.      |

**示例:**

```js
F
fangJinliang1 已提交
420
let hashCode = 'hashCode';
421 422 423

function removeCallback(err) {
    if (err) {
424
        console.error(`remove failed, code is ${err.code}, message is ${err.message}`);
425 426 427 428
    } else {
        console.info("remove success");
    }
}
F
fangJinliang1 已提交
429
let reason = NotificationSubscribe.RemoveReason.CANCEL_REASON_REMOVE;
430
notificationSubscribe.remove(hashCode, reason, removeCallback);
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
```

## NotificationSubscribe.remove

remove(hashCode: string, reason: RemoveReason): Promise\<void\>

删除指定通知(Promise形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
447
| 参数名     | 类型       | 必填 | 说明       |
448 449 450 451 452 453
| -------- | ---------- | ---- | ---------- |
| hashCode | string | 是   | 通知唯一ID。 |
| reason   | [RemoveReason](#removereason) | 是   | 通知删除原因。         |

**错误码:**

F
fangJinliang1 已提交
454 455
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

456 457
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
458 459 460
| 201  | Permission denied.                           |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.                  |
461 462 463 464 465 466 467 468
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
| 1600007  | The notification is not exist.      |

**示例:**

```js
F
fangJinliang1 已提交
469
let hashCode = 'hashCode';
470 471
let reason = notificationSubscribe.RemoveReason.CLICK_REASON_REMOVE;
notificationSubscribe.remove(hashCode, reason).then(() => {
F
fangJinliang1 已提交
472
	console.info("remove success");
473 474 475 476 477 478 479
});
```

## NotificationSubscribe.removeAll

removeAll(bundle: BundleOption, callback: AsyncCallback\<void\>): void

F
fangJinliang1 已提交
480
删除指定应用的所有通知(Callback形式)。
481 482 483 484 485 486 487 488 489

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

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

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

**参数:**

F
fangJinliang1 已提交
490
| 参数名     | 类型                  | 必填 | 说明                         |
491
| -------- | --------------------- | ---- | ---------------------------- |
Y
yuyaozhi 已提交
492
| bundle   | [BundleOption]((js-apis-inner-notification-notificationCommonDef.md#bundleoption))          | 是   | 指定应用的包信息。                   |
F
fangJinliang1 已提交
493
| callback | AsyncCallback\<void\> | 是   | 删除指定应用的所有通知回调函数。 |
494 495 496

**错误码:**

F
fangJinliang1 已提交
497 498
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

499 500
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
501 502 503
| 201  | Permission denied.                           |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.                  |
504 505 506 507 508 509 510 511 512 513
| 1600001  | Internal error.                          |
| 1600002  | Marshalling or unmarshalling error.      |
| 1600003  | Failed to connect service.               |
| 17700001 | The specified bundle name was not found. |

**示例:**

```js
function removeAllCallback(err) {
    if (err) {
514
        console.error(`removeAll failed, code is ${err.code}, message is ${err.message}`);
515 516 517 518
    } else {
        console.info("removeAll success");
    }
}
F
fangJinliang1 已提交
519
let bundle = {
520
    bundle: "bundleName1",
F
fangJinliang1 已提交
521
};
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
NotificationSubscribe.removeAll(bundle, removeAllCallback);
```

## NotificationSubscribe.removeAll

removeAll(callback: AsyncCallback\<void\>): void

删除所有通知(Callback形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
539
| 参数名     | 类型                  | 必填 | 说明                 |
540 541 542 543 544
| -------- | --------------------- | ---- | -------------------- |
| callback | AsyncCallback\<void\> | 是   | 删除所有通知回调函数。 |

**错误码:**

F
fangJinliang1 已提交
545 546
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

547 548
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
549 550 551
| 201  | Permission denied.                           |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.                  |
552 553 554 555 556 557 558 559 560
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |

**示例:**

```js
function removeAllCallback(err) {
    if (err) {
561
        console.error(`removeAll failed, code is ${err.code}, message is ${err.message}`);
562 563 564 565 566
    } else {
        console.info("removeAll success");
    }
}

567
notificationSubscribe.removeAll(removeAllCallback);
568 569 570 571 572 573
```

## NotificationSubscribe.removeAll

removeAll(bundle?: BundleOption): Promise\<void\>

F
fangJinliang1 已提交
574
删除指定应用的所有通知(Promise形式)。
575 576 577 578 579 580 581 582 583

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

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

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

**参数:**

F
fangJinliang1 已提交
584
| 参数名   | 类型         | 必填 | 说明       |
585
| ------ | ------------ | ---- | ---------- |
Y
yuyaozhi 已提交
586
| bundle | [BundleOption]((js-apis-inner-notification-notificationCommonDef.md#bundleoption)) | 否   | 指定应用的包信息。 |
587 588 589

**错误码:**

F
fangJinliang1 已提交
590 591
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

592 593
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
594 595 596
| 201  | Permission denied.                           |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.                  |
597 598 599 600 601 602 603 604
| 1600001  | Internal error.                          |
| 1600002  | Marshalling or unmarshalling error.      |
| 1600003  | Failed to connect service.               |
| 17700001 | The specified bundle name was not found. |

**示例:**

```js
F
fangJinliang1 已提交
605
// 不指定应用时,删除所有通知
606
notificationSubscribe.removeAll().then(() => {
F
fangJinliang1 已提交
607
	console.info("removeAll success");
608 609 610 611 612 613 614
});
```

## NotificationSubscribe.removeAll

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

F
fangJinliang1 已提交
615
删除指定用户下的所有通知(callback形式)。
616 617 618 619 620 621 622 623 624

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

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

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

**参数:**

F
fangJinliang1 已提交
625
| 参数名   | 类型         | 必填 | 说明       |
626
| ------ | ------------ | ---- | ---------- |
F
fangJinliang1 已提交
627 628
| userId | number | 是   | 用户ID。 |
| callback | AsyncCallback\<void\> | 是   | 删除指定用户所有通知回调函数。 |
629 630 631

**错误码:**

F
fangJinliang1 已提交
632 633
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

634 635
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
636 637 638
| 201  | Permission denied.                           |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.                  |
639 640 641 642 643 644 645 646 647 648
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
| 1600008  | The user is not exist.              |

**示例:**

```js
function removeAllCallback(err) {
    if (err) {
649
        console.error(`removeAll failed, code is ${err.code}, message is ${err.message}`);
650 651 652 653 654
    } else {
        console.info("removeAll success");
    }
}

F
fangJinliang1 已提交
655
let userId = 1;
656

657
notificationSubscribe.removeAll(userId, removeAllCallback);
658 659 660 661 662 663
```

## Notification.removeAll

removeAll(userId: number): Promise\<void>

F
fangJinliang1 已提交
664
删除指定用户下的所有通知(Promise形式)。
665 666 667 668 669 670 671 672 673

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

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

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

**参数:**

F
fangJinliang1 已提交
674
| 参数名   | 类型         | 必填 | 说明       |
675
| ------ | ------------ | ---- | ---------- |
F
fangJinliang1 已提交
676
| userId | number | 是   | 用户ID。 |
677 678 679

**错误码:**

F
fangJinliang1 已提交
680 681
错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

682 683
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
684 685 686
| 201  | Permission denied.                           |
| 202  | Not system application to call the interface. |
| 401  | The parameter check failed.                  |
687 688 689 690 691 692 693 694 695 696
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
| 1600008  | The user is not exist.              |

**示例:**

```js
function removeAllCallback(err) {
    if (err) {
697
        console.error(`removeAll failed, code is ${err.code}, message is ${err.message}`);
698 699 700 701 702
    } else {
        console.info("removeAll success");
    }
}

F
fangJinliang1 已提交
703
let userId = 1;
704

705
notificationSubscribe.removeAll(userId, removeAllCallback);
706 707 708 709
```

## NotificationSubscriber

F
fangJinliang1 已提交
710
作为订阅通知接口[subscribe](#notificationsubscribe)的入参,提供订阅者接收到新通知、取消通知等的回调方法。
711 712 713 714 715

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

### onConsume

Y
yuyaozhi 已提交
716
onConsume?: (data: [SubscribeCallbackData](js-apis-notification.md#subscribecallbackdata)) => void
717

F
fangJinliang1 已提交
718
接收到新通知的回调函数。
719 720 721 722 723 724 725 726 727

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ------------------------ | ---- | -------------------------- |
Y
yuyaozhi 已提交
728
| data | [SubscribeCallbackData](js-apis-notification.md#subscribecallbackdata) | 是 | 新接收到的通知信息。 |
729 730 731 732 733 734

**示例:**

```javascript
function subscribeCallback(err) {
    if (err) {
735
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
736 737 738 739 740 741 742 743 744 745 746
    } else {
        console.info("subscribeCallback");
    }
};

function onConsumeCallback(data) {
    console.info('===> onConsume in test');
    let req = data.request;
    console.info('===> onConsume callback req.id:' + req.id);
};

F
fangJinliang1 已提交
747
let subscriber = {
748 749 750
    onConsume: onConsumeCallback
};

751
notificationSubscribe.subscribe(subscriber, subscribeCallback);
752 753 754 755
```

### onCancel

Y
yuyaozhi 已提交
756
onCancel?:(data: [SubscribeCallbackData](js-apis-notification.md#subscribecallbackdata)) => void
757

F
fangJinliang1 已提交
758
取消通知的回调函数。
759 760 761 762 763 764 765 766 767

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ------------------------ | ---- | -------------------------- |
Y
yuyaozhi 已提交
768
| data | [SubscribeCallbackData](js-apis-notification.md#subscribecallbackdata) | 是 | 需要取消的通知信息。 |
769 770 771 772 773 774

**示例:**

```javascript
function subscribeCallback(err) {
    if (err) {
775
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
776 777 778 779 780 781 782 783 784 785 786
    } else {
        console.info("subscribeCallback");
    }
};

function onCancelCallback(data) {
    console.info('===> onCancel in test');
    let req = data.request;
    console.info('===> onCancel callback req.id:' + req.id);
}

F
fangJinliang1 已提交
787
let subscriber = {
788 789 790
    onCancel: onCancelCallback
};

791
notificationSubscribe.subscribe(subscriber, subscribeCallback);
792 793 794 795
```

### onUpdate

Y
yuyaozhi 已提交
796
onUpdate?:(data: [NotificationSortingMap](js-apis-notification.md#notificationsortingmap)) => void
797

F
fangJinliang1 已提交
798
更新通知排序的回调函数。
799 800 801 802 803 804 805 806 807

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ------------------------ | ---- | -------------------------- |
Y
yuyaozhi 已提交
808
| data | [NotificationSortingMap](js-apis-notification.md#notificationsortingmap)) | 是 | 最新的通知排序列表。 |
809 810 811 812 813 814

**示例:**

```javascript
function subscribeCallback(err) {
    if (err) {
815
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
816 817 818 819 820
    } else {
        console.info("subscribeCallback");
    }
};

F
fangJinliang1 已提交
821 822
function onUpdateCallback(map) {
    console.info('===> onUpdateCallback map:' + JSON.stringify(map));
823 824
}

F
fangJinliang1 已提交
825
let subscriber = {
826 827 828
    onUpdate: onUpdateCallback
};

829
notificationSubscribe.subscribe(subscriber, subscribeCallback);
830 831 832 833 834 835
```

### onConnect

onConnect?:() => void

F
fangJinliang1 已提交
836
订阅完成的回调函数。
837 838 839 840 841 842 843 844 845 846

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

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

**示例:**

```javascript
function subscribeCallback(err) {
    if (err) {
847
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
848 849 850 851 852 853 854 855 856
    } else {
        console.info("subscribeCallback");
    }
};

function onConnectCallback() {
    console.info('===> onConnect in test');
}

F
fangJinliang1 已提交
857
let subscriber = {
858 859 860
    onConnect: onConnectCallback
};

861
notificationSubscribe.subscribe(subscriber, subscribeCallback);
862 863 864 865 866 867
```

### onDisconnect

onDisconnect?:() => void

F
fangJinliang1 已提交
868
取消订阅的回调函数。
869 870 871 872 873 874 875 876 877 878

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

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

**示例:**

```javascript
function subscribeCallback(err) {
    if (err) {
879
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
880 881 882 883
    } else {
        console.info("subscribeCallback");
    }
};
F
fangJinliang1 已提交
884 885
function unsubscribeCallback(err) {
    if (err.code) {
886
        console.error(`unsubscribe failed, code is ${err.code}, message is ${err.message}`);
F
fangJinliang1 已提交
887 888 889 890
    } else {
        console.info("unsubscribeCallback");
    }
};
891

F
fangJinliang1 已提交
892 893 894
function onConnectCallback() {
    console.info('===> onConnect in test');
}
895 896 897 898
function onDisconnectCallback() {
    console.info('===> onDisconnect in test');
}

F
fangJinliang1 已提交
899
let subscriber = {
F
fangJinliang1 已提交
900
    onConnect: onConnectCallback,
901 902 903
    onDisconnect: onDisconnectCallback
};

F
fangJinliang1 已提交
904
// 订阅通知后会收到onConnect回调
905
notificationSubscribe.subscribe(subscriber, subscribeCallback);
F
fangJinliang1 已提交
906
// 取消订阅后会收到onDisconnect回调
907
notificationSubscribe.unsubscribe(subscriber, unsubscribeCallback);
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924
```

### onDestroy

onDestroy?:() => void

服务失联回调函数。

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

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

**示例:**

```javascript
function subscribeCallback(err) {
    if (err) {
925
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
926 927 928 929 930 931 932 933 934
    } else {
        console.info("subscribeCallback");
    }
};

function onDestroyCallback() {
    console.info('===> onDestroy in test');
}

F
fangJinliang1 已提交
935
let subscriber = {
936 937 938
    onDestroy: onDestroyCallback
};

939
notificationSubscribe.subscribe(subscriber, subscribeCallback);
940 941 942 943 944 945
```

### onDoNotDisturbDateChange

onDoNotDisturbDateChange?:(mode: notification.[DoNotDisturbDate](js-apis-notificationManager.md#donotdisturbdate)) => void

F
fangJinliang1 已提交
946
免打扰时间选项发生变更时的回调函数。
947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ------------------------ | ---- | -------------------------- |
| mode | notification.[DoNotDisturbDate](js-apis-notificationManager.md#DoNotDisturbDate) | 是 | 回调返回免打扰时间选项变更。 |

**示例:**

```javascript
function subscribeCallback(err) {
    if (err) {
963
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
964 965 966 967 968
    } else {
        console.info("subscribeCallback");
    }
};

F
fangJinliang1 已提交
969 970
function onDoNotDisturbDateChangeCallback(mode) {
    console.info('===> onDoNotDisturbDateChange:' + mode);
971 972
}

F
fangJinliang1 已提交
973
let subscriber = {
974 975 976
    onDoNotDisturbDateChange: onDoNotDisturbDateChangeCallback
};

977
notificationSubscribe.subscribe(subscriber, subscribeCallback);
978 979 980 981 982
```


### onEnabledNotificationChanged

Y
yuyaozhi 已提交
983
onEnabledNotificationChanged?:(callbackData: [EnabledNotificationCallbackData](js-apis-notification.md#enablednotificationcallbackdata)) => void
984 985 986 987 988 989 990 991 992 993 994

监听应用通知使能变化。

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

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

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| ------------ | ------------------------ | ---- | -------------------------- |
Y
yuyaozhi 已提交
995
| callback | AsyncCallback\<[EnabledNotificationCallbackData](js-apis-notification.md#enablednotificationcallbackdata)\> | 是 | 回调返回监听到的应用信息。 |
996 997 998 999 1000 1001

**示例:**

```javascript
function subscribeCallback(err) {
    if (err) {
1002
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
    } else {
        console.info("subscribeCallback");
    }
};

function onEnabledNotificationChangedCallback(callbackData) {
    console.info("bundle: ", callbackData.bundle);
    console.info("uid: ", callbackData.uid);
    console.info("enable: ", callbackData.enable);
};

F
fangJinliang1 已提交
1014
let subscriber = {
1015 1016 1017
    onEnabledNotificationChanged: onEnabledNotificationChangedCallback
};

1018
notificationSubscribe.subscribe(subscriber, subscribeCallback);
1019 1020
```

F
fangJinliang1 已提交
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
### onBadgeChanged<sup>10+</sup>

 onBadgeChanged?:(data: [BadgeNumberCallbackData](#badgenumbercallbackdata)) => void

监听应用角标个数变化。

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

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                       |
| -------- | ------------------------------------------------------------ | ---- | -------------------------- |
| callback | AsyncCallback\<[BadgeNumberCallbackData](#badgenumbercallbackdata)\> | 是   | 回调返回监听到的应用信息。 |

**示例:**

```javascript
function subscribeCallback(err) {
    if (err) {
        console.error(`subscribe failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("subscribeCallback");
    }
};

function onBadgeChangedCallback(data) {
    console.info("bundle: ", data.bundle);
    console.info("uid: ", data.uid);
    console.info("badgeNumber: ", data.badgeNumber);
};

let subscriber = {
    onBadgeChanged: onBadgeChangedCallback
};

notificationSubscribe.subscribe(subscriber, subscribeCallback);
```

1061 1062 1063 1064 1065 1066 1067

## RemoveReason

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

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

F
fangJinliang1 已提交
1068
| 名称                 | 值  | 说明                  |
1069 1070
| -------------------- | --- | -------------------- |
| CLICK_REASON_REMOVE  | 1   | 点击通知后删除通知。    |
F
fangJinliang1 已提交
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
| CANCEL_REASON_REMOVE | 2   | 用户删除通知。         |

## BadgeNumberCallbackData<sup>10+</sup>

**系统能力**:以下各项对应的系统能力均为SystemCapability.Notification.Notification

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

| 名称        | 类型   | 可读 | 可写 | 描述         |
| ----------- | ------ | ---- | ---- | ------------ |
| bundle      | string | 是   | 否   | 应用的包名。 |
| uid         | number | 是   | 否   | 应用的uid。  |
| badgeNumber | number | 是   | 否   | 角标个数。   |