js-apis-notificationSubscribe.md 26.8 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
```

## NotificationSubscribe.subscribe

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

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

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

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

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

**参数:**

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

**错误码:**

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

39 40 41 42 43
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
44
| 1600012  | No memory space.                    |
45 46 47 48 49 50 51

**示例:**

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

## NotificationSubscribe.subscribe

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

F
fangJinliang1 已提交
73
订阅当前用户下所有应用的通知(callback形式)。
74 75 76 77 78 79 80 81 82

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

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

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

**参数:**

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

**错误码:**

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

92 93 94 95 96
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
97
| 1600012  | No memory space.                    |
98 99 100 101 102 103

**示例:**

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



## NotificationSubscribe.subscribe

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

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

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

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

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

**参数:**

F
fangJinliang1 已提交
134
| 参数名       | 类型                      | 必填 | 说明         |
135
| ---------- | ------------------------- | ---- | ------------ |
Y
yuyaozhi 已提交
136 137
| subscriber | [NotificationSubscriber](js-apis-notification.md#notificationsubscriber)    | 是   | 通知订阅对象。 |
| info       | [NotificationSubscribeInfo](js-apis-notification.md#notificationsubscribeinfo) | 否   | 通知订阅信息。   |
138 139 140

**错误码:**

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

143 144 145 146 147
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
148
| 1600012  | No memory space.                    |
149 150 151 152 153

**示例:**

```js
function onConsumeCallback(data) {
F
fangJinliang1 已提交
154
    console.info("Consume callback: " + JSON.stringify(data));
155
}
F
fangJinliang1 已提交
156
let subscriber = {
157 158
    onConsume: onConsumeCallback
};
159
notificationSubscribe.subscribe(subscriber).then(() => {
F
fangJinliang1 已提交
160
	console.info("subscribe success");
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
});
```



## NotificationSubscribe.unsubscribe

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

取消订阅(callbcak形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
180
| 参数名       | 类型                   | 必填 | 说明                 |
181
| ---------- | ---------------------- | ---- | -------------------- |
Y
yuyaozhi 已提交
182
| subscriber | [NotificationSubscriber](js-apis-notification.md#notificationsubscriber) | 是   | 通知订阅对象。         |
183 184 185 186
| callback   | AsyncCallback\<void\>  | 是   | 取消订阅动作回调函数。 |

**错误码:**

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

189 190 191 192 193 194 195 196 197 198 199
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |

**示例:**

```js
function unsubscribeCallback(err) {
    if (err) {
200
        console.error(`unsubscribe failed, code is ${err.code}, message is ${err.message}`);
201 202 203 204
    } else {
        console.info("unsubscribe success");
    }
}
Y
yuyaozhi 已提交
205 206
function onDisconnectCallback() {
	console.info("subscribe disconnect");
207
}
F
fangJinliang1 已提交
208
let subscriber = {
F
fangJinliang1 已提交
209
    onDisconnect: onDisconnectCallback
F
fangJinliang1 已提交
210
};
211
notificationSubscribe.unsubscribe(subscriber, unsubscribeCallback);
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
```

## NotificationSubscribe.unsubscribe

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

取消订阅(Promise形式)。

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

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

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

**参数:**

F
fangJinliang1 已提交
228
| 参数名       | 类型                   | 必填 | 说明         |
229
| ---------- | ---------------------- | ---- | ------------ |
Y
yuyaozhi 已提交
230
| subscriber | [NotificationSubscriber](js-apis-notification.md#notificationsubscriber) | 是   | 通知订阅对象。 |
231 232 233

**错误码:**

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

236 237 238 239 240 241 242 243 244
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |

**示例:**

```js
Y
yuyaozhi 已提交
245 246
function onDisconnectCallback() {
	console.info("subscribe disconnect");
247
}
F
fangJinliang1 已提交
248
let subscriber = {
F
fangJinliang1 已提交
249
    onDisconnect: onDisconnectCallback
250
};
251
notificationSubscribe.unsubscribe(subscriber).then(() => {
F
fangJinliang1 已提交
252
	console.info("unsubscribe success");
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
});
```

## NotificationSubscribe.remove

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

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

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

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

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

**参数:**

F
fangJinliang1 已提交
270
| 参数名            | 类型                                | 必填 | 说明                 |
271
| --------------- |   ----------------------------------| ---- | -------------------- |
Y
yuyaozhi 已提交
272
| bundle          | [BundleOption](js-apis-inner-notification-notificationCommonDef.md#bundleoption)       | 是   | 指定应用的包信息。           |
273
| notificationKey | [NotificationKey](#notificationkey) | 是   | 通知键值。             |
274 275 276 277 278
| reason          | [RemoveReason](#removereason)      | 是   | 通知删除原因。         |
| callback        | AsyncCallback\<void\>               | 是   | 删除指定通知回调函数。 |

**错误码:**

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

281 282 283 284 285 286 287 288 289 290 291 292 293
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
| 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) {
294
        console.error(`remove failed, code is ${err.code}, message is ${err.message}`);
295 296 297 298
    } else {
        console.info("remove success");
    }
}
F
fangJinliang1 已提交
299
let bundle = {
300
    bundle: "bundleName1",
F
fangJinliang1 已提交
301 302
};
let notificationKey = {
303 304
    id: 0,
    label: "label",
F
fangJinliang1 已提交
305
};
306 307
let reason = notificationSubscribe.RemoveReason.CLICK_REASON_REMOVE;
notificationSubscribe.remove(bundle, notificationKey, reason, removeCallback);
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
```



## NotificationSubscribe.remove

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

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

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

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

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

**参数:**

F
fangJinliang1 已提交
326
| 参数名            | 类型            | 必填 | 说明       |
327
| --------------- | --------------- | ---- | ---------- |
Y
yuyaozhi 已提交
328
| bundle          | [BundleOption](js-apis-inner-notification-notificationCommonDef.md#bundleoption)    | 是   | 指定应用的包信息。 |
329
| notificationKey | [NotificationKey](#notificationkey) | 是   | 通知键值。   |
330 331 332 333
| reason          | [RemoveReason](#removereason) | 是   | 通知删除原因。         |

**错误码:**

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

336 337 338 339 340 341 342 343 344 345 346
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
| 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 已提交
347
let bundle = {
348
    bundle: "bundleName1",
F
fangJinliang1 已提交
349 350
};
let notificationKey = {
351 352
    id: 0,
    label: "label",
F
fangJinliang1 已提交
353
};
354
let reason = notificationSubscribe.RemoveReason.CLICK_REASON_REMOVE;
355
notificationSubscribe.remove(bundle, notificationKey, reason).then(() => {
F
fangJinliang1 已提交
356
	console.info("remove success");
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
});
```

## NotificationSubscribe.remove

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

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

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

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

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

**参数:**

F
fangJinliang1 已提交
374
| 参数名     | 类型                  | 必填 | 说明                 |
375
| -------- | --------------------- | ---- | -------------------- |
376
| hashCode | string                | 是   | 通知唯一ID。可以通过[onConsume](js-apis-inner-notification-notificationSubscriber.md#onConsume)回调的入参[SubscribeCallbackData](js-apis-notification.md#subscribecallbackdata)获取其内部[NotificationRequest](js-apis-inner-notification-notificationRequest.md#notificationrequest)对象中的hashCode。 |
377 378 379 380 381
| reason   | [RemoveReason](#removereason) | 是   | 通知删除原因。         |
| callback | AsyncCallback\<void\> | 是   | 删除指定通知回调函数。 |

**错误码:**

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

384 385 386 387 388 389 390 391 392 393
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
| 1600007  | The notification is not exist.      |

**示例:**

```js
F
fangJinliang1 已提交
394
let hashCode = 'hashCode';
395 396 397

function removeCallback(err) {
    if (err) {
398
        console.error(`remove failed, code is ${err.code}, message is ${err.message}`);
399 400 401 402
    } else {
        console.info("remove success");
    }
}
403
let reason = notificationSubscribe.RemoveReason.CANCEL_REASON_REMOVE;
404
notificationSubscribe.remove(hashCode, reason, removeCallback);
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
```

## NotificationSubscribe.remove

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

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

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

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

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

**参数:**

F
fangJinliang1 已提交
421
| 参数名     | 类型       | 必填 | 说明       |
422 423 424 425 426 427
| -------- | ---------- | ---- | ---------- |
| hashCode | string | 是   | 通知唯一ID。 |
| reason   | [RemoveReason](#removereason) | 是   | 通知删除原因。         |

**错误码:**

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

430 431 432 433 434 435 436 437 438 439
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |
| 1600007  | The notification is not exist.      |

**示例:**

```js
F
fangJinliang1 已提交
440
let hashCode = 'hashCode';
441 442
let reason = notificationSubscribe.RemoveReason.CLICK_REASON_REMOVE;
notificationSubscribe.remove(hashCode, reason).then(() => {
F
fangJinliang1 已提交
443
	console.info("remove success");
444 445
});
```
X
XKK 已提交
446
## NotificationSubscribe.remove<sup>10+<sup>
X
XKK 已提交
447

X
XKK 已提交
448
remove(hashCodes: Array\<String\>, reason: RemoveReason, callback: AsyncCallback\<void\>): void
X
XKK 已提交
449 450 451 452 453 454 455 456 457 458 459 460 461

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

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

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

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

**参数:**

| 参数名       | 类型                            | 必填 | 说明                                                                                                                                                                                                                                                                                  |
|-----------|-------------------------------| ---- |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
X
XKK 已提交
462
| hashCodes | Array\<String\>               | 是   | 通知唯一ID数组集合。可以通过[onConsume](js-apis-inner-notification-notificationSubscriber.md#onConsume)回调的入参[SubscribeCallbackData](js-apis-notification.md#subscribecallbackdata)获取其内部[NotificationRequest](js-apis-inner-notification-notificationRequest.md#notificationrequest)对象中的hashCode。 |
X
XKK 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
| reason    | [RemoveReason](#removereason) | 是   | 通知删除原因。                                                                                                                                                                                                                                                                             |
| callback  | AsyncCallback\<void\>         | 是   | 删除指定通知回调函数。                                                                                                                                                                                                                                                                         |

**错误码:**

错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |

**示例:**

```js
let hashCodes = ['hashCode1', 'hashCode2'];

function removeCallback(err) {
    if (err) {
        console.error(`remove failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("remove success");
    }
}
let reason = notificationSubscribe.RemoveReason.CANCEL_REASON_REMOVE;
notificationSubscribe.remove(hashCodes, reason, removeCallback);
```

X
XKK 已提交
492
## NotificationSubscribe.remove<sup>10+<sup>
X
XKK 已提交
493

X
XKK 已提交
494
remove(hashCodes: Array\<String\>, reason: RemoveReason): Promise\<void\>
X
XKK 已提交
495 496 497 498 499 500 501 502 503 504 505 506 507

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

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

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

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

**参数:**

| 参数名       | 类型                            | 必填 | 说明          |
|-----------|-------------------------------| ---- |-------------|
X
XKK 已提交
508
| hashCodes | Array\<String\>               | 是   | 通知唯一ID数组集合。 |
X
XKK 已提交
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
| reason    | [RemoveReason](#removereason) | 是   | 通知删除原因。     |

**错误码:**

错误码详细介绍请参考[errcode-notification](../errorcodes/errorcode-notification.md)

| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |

**示例:**

```js
let hashCodes = ['hashCode1','hashCode2'];
let reason = notificationSubscribe.RemoveReason.CLICK_REASON_REMOVE;
notificationSubscribe.remove(hashCodes, reason).then(() => {
    console.info("remove success");
});
```
530 531 532 533 534

## NotificationSubscribe.removeAll

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

F
fangJinliang1 已提交
535
删除指定应用的所有通知(Callback形式)。
536 537 538 539 540 541 542 543 544

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

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

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

**参数:**

F
fangJinliang1 已提交
545
| 参数名     | 类型                  | 必填 | 说明                         |
546
| -------- | --------------------- | ---- | ---------------------------- |
Z
zengyawen 已提交
547
| bundle   | [BundleOption](js-apis-inner-notification-notificationCommonDef.md#bundleoption)        | 是   | 指定应用的包信息。                   |
F
fangJinliang1 已提交
548
| callback | AsyncCallback\<void\> | 是   | 删除指定应用的所有通知回调函数。 |
549 550 551

**错误码:**

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

554 555 556 557 558 559 560 561 562 563 564 565
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
| 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) {
566
        console.error(`removeAll failed, code is ${err.code}, message is ${err.message}`);
567 568 569 570
    } else {
        console.info("removeAll success");
    }
}
F
fangJinliang1 已提交
571
let bundle = {
572
    bundle: "bundleName1",
F
fangJinliang1 已提交
573
};
574
notificationSubscribe.removeAll(bundle, removeAllCallback);
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
```

## NotificationSubscribe.removeAll

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

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

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

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

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

**参数:**

F
fangJinliang1 已提交
591
| 参数名     | 类型                  | 必填 | 说明                 |
592 593 594 595 596
| -------- | --------------------- | ---- | -------------------- |
| callback | AsyncCallback\<void\> | 是   | 删除所有通知回调函数。 |

**错误码:**

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

599 600 601 602 603 604 605 606 607 608 609
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 1600001  | Internal error.                     |
| 1600002  | Marshalling or unmarshalling error. |
| 1600003  | Failed to connect service.          |

**示例:**

```js
function removeAllCallback(err) {
    if (err) {
610
        console.error(`removeAll failed, code is ${err.code}, message is ${err.message}`);
611 612 613 614 615
    } else {
        console.info("removeAll success");
    }
}

616
notificationSubscribe.removeAll(removeAllCallback);
617 618 619 620 621 622
```

## NotificationSubscribe.removeAll

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

F
fangJinliang1 已提交
623
删除指定应用的所有通知(Promise形式)。
624 625 626 627 628 629 630 631 632

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

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

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

**参数:**

F
fangJinliang1 已提交
633
| 参数名   | 类型         | 必填 | 说明       |
634
| ------ | ------------ | ---- | ---------- |
Z
zengyawen 已提交
635
| bundle | [BundleOption](js-apis-inner-notification-notificationCommonDef.md#bundleoption) | 否   | 指定应用的包信息。 |
636 637 638

**错误码:**

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

641 642 643 644 645 646 647 648 649 650
| 错误码ID | 错误信息                                 |
| -------- | ---------------------------------------- |
| 1600001  | Internal error.                          |
| 1600002  | Marshalling or unmarshalling error.      |
| 1600003  | Failed to connect service.               |
| 17700001 | The specified bundle name was not found. |

**示例:**

```js
F
fangJinliang1 已提交
651
// 不指定应用时,删除所有通知
652
notificationSubscribe.removeAll().then(() => {
F
fangJinliang1 已提交
653
	console.info("removeAll success");
654 655 656 657 658 659 660
});
```

## NotificationSubscribe.removeAll

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

F
fangJinliang1 已提交
661
删除指定用户下的所有通知(callback形式)。
662 663 664 665 666 667 668 669 670

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

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

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

**参数:**

F
fangJinliang1 已提交
671
| 参数名   | 类型         | 必填 | 说明       |
672
| ------ | ------------ | ---- | ---------- |
F
fangJinliang1 已提交
673 674
| userId | number | 是   | 用户ID。 |
| callback | AsyncCallback\<void\> | 是   | 删除指定用户所有通知回调函数。 |
675 676 677

**错误码:**

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

680 681 682 683 684 685 686 687 688 689 690 691
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 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) {
692
        console.error(`removeAll failed, code is ${err.code}, message is ${err.message}`);
693 694 695 696 697
    } else {
        console.info("removeAll success");
    }
}

F
fangJinliang1 已提交
698
let userId = 1;
699

700
notificationSubscribe.removeAll(userId, removeAllCallback);
701 702
```

703
## NotificationSubscribe.removeAll
704 705 706

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

F
fangJinliang1 已提交
707
删除指定用户下的所有通知(Promise形式)。
708 709 710 711 712 713 714 715 716

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

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

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

**参数:**

F
fangJinliang1 已提交
717
| 参数名   | 类型         | 必填 | 说明       |
718
| ------ | ------------ | ---- | ---------- |
F
fangJinliang1 已提交
719
| userId | number | 是   | 用户ID。 |
720 721 722

**错误码:**

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

725 726 727 728 729 730 731 732 733 734 735 736
| 错误码ID | 错误信息                            |
| -------- | ----------------------------------- |
| 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) {
737
        console.error(`removeAll failed, code is ${err.code}, message is ${err.message}`);
738 739 740 741 742
    } else {
        console.info("removeAll success");
    }
}

F
fangJinliang1 已提交
743
let userId = 1;
744

745
notificationSubscribe.removeAll(userId, removeAllCallback);
746 747
```

748 749 750 751
## NotificationKey

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

F
fangJinliang1 已提交
752 753
**系统API**: 此接口为系统接口,三方应用不支持调用。

754 755 756 757
| 名称  | 类型   | 必填 | 说明     |
| ----- | ------ | --- | -------- |
| id    | number | 是  | 通知ID。   |
| label | string | 否  | 通知标签。 |
758

759 760 761 762 763 764
## RemoveReason

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

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

F
fangJinliang1 已提交
765
| 名称                 | 值  | 说明                  |
766 767
| -------------------- | --- | -------------------- |
| CLICK_REASON_REMOVE  | 1   | 点击通知后删除通知。    |
F
fangJinliang1 已提交
768
| CANCEL_REASON_REMOVE | 2   | 用户删除通知。         |