Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
ed110253
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
ed110253
编写于
1月 04, 2023
作者:
O
openharmony_ci
提交者:
Gitee
1月 04, 2023
浏览文件
操作
浏览文件
下载
差异文件
!12864 更新事件通知文档
Merge pull request !12864 from yangliang36/yl1223
上级
93071f69
f33f052f
变更
10
展开全部
隐藏空白更改
内联
并排
Showing
10 changed file
with
1613 addition
and
856 deletion
+1613
-856
zh-cn/application-dev/reference/apis/commonEvent-definitions.md
...application-dev/reference/apis/commonEvent-definitions.md
+97
-97
zh-cn/application-dev/reference/apis/commonEventManager-definitions.md
...tion-dev/reference/apis/commonEventManager-definitions.md
+781
-0
zh-cn/application-dev/reference/apis/js-apis-commonEvent.md
zh-cn/application-dev/reference/apis/js-apis-commonEvent.md
+226
-172
zh-cn/application-dev/reference/apis/js-apis-commonEventManager.md
...lication-dev/reference/apis/js-apis-commonEventManager.md
+218
-355
zh-cn/application-dev/reference/apis/js-apis-emitter.md
zh-cn/application-dev/reference/apis/js-apis-emitter.md
+50
-41
zh-cn/application-dev/reference/apis/js-apis-reminderAgent.md
...n/application-dev/reference/apis/js-apis-reminderAgent.md
+101
-77
zh-cn/application-dev/reference/apis/js-apis-reminderAgentManager.md
...cation-dev/reference/apis/js-apis-reminderAgentManager.md
+107
-82
zh-cn/application-dev/reference/errorcodes/errorcode-CommonEventService.md
...-dev/reference/errorcodes/errorcode-CommonEventService.md
+12
-12
zh-cn/application-dev/reference/errorcodes/errorcode-DistributedNotificationService.md
...ce/errorcodes/errorcode-DistributedNotificationService.md
+18
-17
zh-cn/application-dev/reference/errorcodes/errorcode-reminderAgentManager.md
...ev/reference/errorcodes/errorcode-reminderAgentManager.md
+3
-3
未找到文件。
zh-cn/application-dev/reference/apis/commonEvent-definitions.md
浏览文件 @
ed110253
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/apis/commonEventManager-definitions.md
0 → 100644
浏览文件 @
ed110253
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/apis/js-apis-commonEvent.md
浏览文件 @
ed110253
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/apis/js-apis-commonEventManager.md
浏览文件 @
ed110253
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/apis/js-apis-emitter.md
浏览文件 @
ed110253
# @ohos.events.emitter (Emitter)
本模块提供
发送和处理进程内事件的能力,包括对持续订阅事件或单次订阅事件的处理,取消订阅事件,发送事件到事件队列
。
本模块提供
了在同一进程不同线程间,或同一进程同一线程内,发送和处理事件的能力,包括持续订阅事件、单次订阅事件、取消订阅事件,以及发送事件到事件队列的能力
。
> **说明:**
>
> 本模块首批接口从API version 7开始支持。
> 本模块首批接口从API version 7开始支持。后续版本新增接口,采用上角标单独标记接口的起始版本。
>
> 本模块接口在FA模型及Stage模型下均可使用。
## 导入模块
...
...
@@ -14,22 +16,22 @@ import emitter from '@ohos.events.emitter'
## 权限列表
无
无
权限要求。
## emitter.on
on(event:
[
InnerEvent
](
#innerevent
)
, callback: Callback
\<
[
EventData
](
#eventdata
)
\>
): void
持续订阅
某个事件以及接收事件的回调处理
。
持续订阅
指定的事件,并在接收到该事件时,执行对应的回调处理函数
。
**系统能力**
:
SystemCapability.Notification.Emitter
**系统能力**
:
`SystemCapability.Notification.Emitter`
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------- | ---- | --------------------------------------- |
| event |
[
InnerEvent
](
#innerevent
)
| 是 | 持续订阅的事件,其中
EventPriority
不生效 |
| callback | Callback
\<
[
EventData
](
#eventdata
)
\>
| 是 | 接收
订阅事件时的回调处理
|
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ----------------------------------- | ---- | ---------------------------------------
---------------
|
| event |
[
InnerEvent
](
#innerevent
)
| 是 | 持续订阅的事件,其中
[
EventPriority
](
#eventpriority
)
,在订阅事件时无需指定,也
不生效 |
| callback | Callback
\<
[
EventData
](
#eventdata
)
\>
| 是 | 接收
到该事件时需要执行的回调处理函数
|
**示例:**
...
...
@@ -37,26 +39,28 @@ on(event: [InnerEvent](#innerevent), callback: Callback\<[EventData](#eventdata)
let
innerEvent
=
{
eventId
:
1
};
function
EmitterCallback
(
eventData
)
{
// 收到eventId为1的事件后执行该回调函数
function
emitterCallback
()
{
console
.
info
(
'
callback
'
);
}
emitter
.
on
(
innerEvent
,
E
mitterCallback
);
emitter
.
on
(
innerEvent
,
e
mitterCallback
);
```
## emitter.once
once(event:
[
InnerEvent
](
#innerevent
)
, callback: Callback
\<
[
EventData
](
#eventdata
)
\>
): void
单次订阅
某个事件以及接收事件的回调处理,接收到回调处理后
自动取消订阅。
单次订阅
指定的事件,并在接收到该事件并执行完相应的回调函数后,
自动取消订阅。
**系统能力**
:
SystemCapability.Notification.Emitter
**系统能力**
:
`SystemCapability.Notification.Emitter`
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------- | ---- | --------------------------------------- |
| event |
[
InnerEvent
](
#innerevent
)
| 是 | 单次订阅的事件,其中
EventPriority
不生效 |
| callback | Callback
\<
[
EventData
](
#
eventdata
)
\>
| 是 | 接收订阅事件时的回调处理
|
| 参数名 | 类型 | 必填 | 说明
|
| -------- | ----------------------------------- | ---- | ---------------------------------------
---------------------------------------
|
| event |
[
InnerEvent
](
#innerevent
)
| 是 | 单次订阅的事件,其中
[
EventPriority
](
#eventpriority
)
,在订阅事件时无需指定,也
不生效 |
| callback | Callback
\<
[
EventData
](
#
innerevent
)
\>
| 是 | 接收到该事件时需要执行的回调处理函数
|
**示例:**
...
...
@@ -64,19 +68,21 @@ once(event: [InnerEvent](#innerevent), callback: Callback\<[EventData](#eventdat
let
innerEvent
=
{
eventId
:
1
};
function
EmitterCallback
(
eventData
)
{
// 收到eventId为1的事件后执行该回调函数
function
emitterCallback
()
{
console
.
info
(
'
once callback
'
);
};
emitter
.
once
(
innerEvent
,
E
mitterCallback
);
emitter
.
once
(
innerEvent
,
e
mitterCallback
);
```
## emitter.off
off(eventId: number): void
取消
订阅某个事件
。
取消
所有针对该事件ID的订阅
。
**系统能力**
:
SystemCapability.Notification.Emitter
**系统能力**
:
`SystemCapability.Notification.Emitter`
**参数:**
...
...
@@ -92,17 +98,17 @@ emitter.off(1);
## emitter.emit
emit(event:
InnerEvent, data?: EventData
): void
emit(event:
[
InnerEvent
](
#innerevent
)
, data?:
[
EventData
](
#eventdata
)
): void
发送
一个事件到事件队列
。
发送
指定的事件
。
**系统能力**
:
SystemCapability.Notification.Emitter
**系统能力**
:
`SystemCapability.Notification.Emitter`
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------------------------- | ---- | -------------
-
|
| event |
[
InnerEvent
](
#innerevent
)
| 是 | 发送的事件
|
| ------ | ------------------------- | ---- | ------------- |
| event |
[
InnerEvent
](
#innerevent
)
| 是 | 发送的事件
,其中
[
EventPriority
](
#eventpriority
)
用于指定事件被发送的优先级
|
| data |
[
EventData
](
#eventdata
)
| 否 | 事件携带的数据 |
**示例:**
...
...
@@ -112,43 +118,46 @@ let eventData = {
data
:
{
"
content
"
:
"
c
"
,
"
id
"
:
1
,
}};
}
};
let
innerEvent
=
{
eventId
:
1
,
priority
:
emitter
.
EventPriority
.
HIGH
};
emitter
.
emit
(
innerEvent
,
eventData
);
```
## EventPriority
用于表示事件被
投递
的优先级。
用于表示事件被
发送
的优先级。
**系统能力**
:
以下各项对应的系统能力均为 SystemCapability.Notification.Emitter
**系统能力**
:
`SystemCapability.Notification.Emitter`
| 名称 | 值 | 说明 |
| 名称 | 值
| 说明 |
| --------- | ---- | --------------------------------------------------- |
| IMMEDIATE | 0 | 表示事件被立即投递。 |
| HIGH | 1 | 表示事件先于LOW优先级投递。 |
| LOW | 2 | 表示事件优于IDLE优先级投递,事件的默认优先级是LOW。 |
| IDLE | 3 | 表示在没有其他事件的情况下,才投递该事件。 |
| IMMEDIATE | 0 | 表示事件被立即投递。
|
| HIGH | 1 | 表示事件先于LOW优先级投递。
|
| LOW | 2 | 表示事件优于IDLE优先级投递,事件的默认优先级是LOW。
|
| IDLE | 3 | 表示在没有其他事件的情况下,才投递该事件。
|
## InnerEvent
进程内的事件
。
订阅或发送的事件,订阅事件时
`EventPriority`
不生效
。
**系统能力**
:
以下各项对应的系统能力均为 SystemCapability.Notification.Emitter
**系统能力**
:
`SystemCapability.Notification.Emitter`
| 名称 | 类型 | 可读 | 可写 | 说明 |
| -------- | ------------------------------- | ---- | ---- | ------------------------------
----
|
| eventId | number | 是 | 是 | 事件
的
ID,由开发者定义用来辨别事件。 |
| priority |
[
EventPriority
](
#eventpriority
)
| 是 | 是 | 事件被投递的优先级。 |
| 名称 | 类型 | 可读 | 可写 | 说明
|
| -------- | ------------------------------- | ---- | ---- | ------------------------------ |
| eventId | number | 是 | 是 | 事件ID,由开发者定义用来辨别事件。 |
| priority |
[
EventPriority
](
#eventpriority
)
| 是 | 是 | 事件被投递的优先级。
|
## EventData
发送事件时传递的数据。
**系统能力**
:
以下各项对应的系统能力均为 SystemCapability.Notification.Emitter
**系统能力**
:
`SystemCapability.Notification.Emitter`
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ---- | ------------------ | ---- | ---- | -------------- |
...
...
zh-cn/application-dev/reference/apis/js-apis-reminderAgent.md
浏览文件 @
ed110253
...
...
@@ -2,7 +2,7 @@
本模块提供后台代理提醒的能力。
开发应用时,开发者可以调用
后台提醒发布的接口创建定时提醒,包括倒计时、日历、闹钟三种提醒类型。使用后台代理提醒能力后,应用可以被冻结或退出
,计时和弹出提醒的功能将被后台系统服务代理。
开发应用时,开发者可以调用
相关接口创建定时提醒,包括倒计时、日历、闹钟这三类提醒类型。使用后台代理提醒能力后,应用被冻结或退出后
,计时和弹出提醒的功能将被后台系统服务代理。
> **说明:**
>
...
...
@@ -13,34 +13,37 @@
## 导入模块
```
j
s
```
t
s
import
reminderAgent
from
'
@ohos.reminderAgent
'
;
```
## reminderAgent.publishReminder
publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback
<
number
>
): void
```
ts
publishReminder
(
reminderReq
:
ReminderRequest
,
callback
:
AsyncCallback
<
number
>
):
void
```
发布一个后台代理提醒,使用
callback方式实现异步调用,该方法需要申请通知弹窗
[
Notification.requestEnableNotification
](
js-apis-notification.md#notificationrequestenablenotification8
)
后才能调用。
发布一个后台代理提醒,使用
回调的方式实现异步调用,该方法需要申请通知弹窗权限
[
Notification.requestEnableNotification
](
js-apis-notification.md#notificationrequestenablenotification8
)
后才能调用。
**需要权限**
:
ohos.permission.PUBLISH_AGENT_REMINDER
**需要权限**
:
`ohos.permission.PUBLISH_AGENT_REMINDER`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| reminderReq |
[
ReminderRequest
](
#reminderrequest
)
| 是 | 需要发布的提醒实例。 |
| callback | AsyncCallback
<
number
>
| 是 | 异步回调,返回当前发布的提醒的reminderI
d。 |
| callback | AsyncCallback
\<
number
\>
| 是 | 异步回调,返回当前发布的提醒的i
d。 |
**示例**
:
```
j
s
```
t
s
let
timer
=
{
reminderType
:
reminderAgent
.
ReminderType
.
REMINDER_TYPE_TIMER
,
triggerTimeInSeconds
:
10
}
reminderAgent
.
publishReminder
(
timer
,
(
err
,
reminderId
)
=>
{
console
.
log
(
"
callback, reminderId =
"
+
reminderId
);
});
...
...
@@ -49,13 +52,15 @@ publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback<number&
## reminderAgent.publishReminder
publishReminder(reminderReq: ReminderRequest): Promise
<
number
>
```
ts
publishReminder
(
reminderReq
:
ReminderRequest
):
Promise
<
number
>
```
发布一个后台代理提醒,使用Promise方式实现异步调用,该方法需要申请通知弹窗
[
Notification.requestEnableNotification
](
js-apis-notification.md#notificationrequestenablenotification8
)
后才能调用。
发布一个后台代理提醒,使用Promise方式实现异步调用,该方法需要申请通知弹窗
权限
[
Notification.requestEnableNotification
](
js-apis-notification.md#notificationrequestenablenotification8
)
后才能调用。
**需要权限**
:
ohos.permission.PUBLISH_AGENT_REMINDER
**需要权限**
:
`ohos.permission.PUBLISH_AGENT_REMINDER`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -65,14 +70,15 @@ publishReminder(reminderReq: ReminderRequest): Promise<number>
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
number
>
| 返回提醒的reminder
Id。 |
| Promise
\<
number
\>
| 返回提醒的
Id。 |
**示例**
:
```
j
s
```
t
s
let
timer
=
{
reminderType
:
reminderAgent
.
ReminderType
.
REMINDER_TYPE_TIMER
,
triggerTimeInSeconds
:
10
}
reminderAgent
.
publishReminder
(
timer
).
then
((
reminderId
)
=>
{
console
.
log
(
"
promise, reminderId =
"
+
reminderId
);
});
...
...
@@ -81,22 +87,24 @@ publishReminder(reminderReq: ReminderRequest): Promise<number>
## reminderAgent.cancelReminder
cancelReminder(reminderId: number, callback: AsyncCallback
<
void
>
): void
```
ts
cancelReminder
(
reminderId
:
number
,
callback
:
AsyncCallback
<
void
>
):
void
```
取消指定id的提醒,使用
callback
方式实现异步调用。
取消指定id的提醒,使用
回调的
方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| reminderId | number | 是 | 目标reminder的id号,
[
publishReminder
](
#reminderagentpublishreminder
)
方法调用成功后获得。 |
| callback | AsyncCallback
<
void
>
| 是 | 异步回调。 |
| callback | AsyncCallback
\<
void
\>
| 是 | 异步回调。 |
**示例**
:
```
j
s
```
t
s
reminderAgent
.
cancelReminder
(
1
,
(
err
,
data
)
=>
{
console
.
log
(
"
cancelReminder callback
"
);
});
...
...
@@ -105,11 +113,13 @@ reminderAgent.cancelReminder(1, (err, data) => {
## reminderAgent.cancelReminder
cancelReminder(reminderId: number): Promise
<
void
>
```
ts
cancelReminder
(
reminderId
:
number
):
Promise
<
void
>
```
取消指定id的提醒,使用Promise方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
...
...
@@ -121,34 +131,35 @@ cancelReminder(reminderId: number): Promise<void>
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
void
>
| Promise类型异步回调。 |
| Promise
\<
void
\>
| Promise类型异步回调。 |
**示例**
:
```
j
s
```
t
s
reminderAgent
.
cancelReminder
(
1
).
then
(()
=>
{
console
.
log
(
"
cancelReminder promise
"
);
});
```
## reminderAgent.getValidReminders
getValidReminders(callback: AsyncCallback
<
Array
<
ReminderRequest
>>
): void
```
ts
getValidReminders
(
callback
:
AsyncCallback
<
Array
<
ReminderRequest
>>
):
void
```
获取当前应用已设置的所有有效(未过期)的提醒,使用
callback
方式实现异步调用。
获取当前应用已设置的所有有效(未过期)的提醒,使用
回调的
方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callback | AsyncCallback
<
Array
<
[ReminderRequest](#reminderrequest)
>>
| 是 | 异步回调,返回当前应用已设置的所有有效(未过期)的提醒。 |
| callback | AsyncCallback
\<
Array
\<
[
ReminderRequest
](
#reminderrequest
)
\>\>
| 是 | 异步回调,返回当前应用已设置的所有有效(未过期)的提醒。 |
**示例**
:
```
j
s
```
t
s
reminderAgent
.
getValidReminders
((
err
,
reminders
)
=>
{
console
.
log
(
"
callback, getValidReminders length =
"
+
reminders
.
length
);
for
(
let
i
=
0
;
i
<
reminders
.
length
;
i
++
)
{
...
...
@@ -178,21 +189,23 @@ reminderAgent.getValidReminders((err, reminders) => {
## reminderAgent.getValidReminders
getValidReminders(): Promise
<
Array
<
ReminderRequest
>>
```
ts
getValidReminders
():
Promise
<
Array
<
ReminderRequest
>>
```
获取当前应用已设置的所有有效(未过期)的提醒,使用Promise方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
Array
<
[ReminderRequest](#reminderrequest)
>>
| 返回当前应用已设置的所有有效(未过期)的提醒。 |
| Promise
\<
Array
\<
[
ReminderRequest
](
#reminderrequest
)
\>\>
| 返回当前应用已设置的所有有效(未过期)的提醒。 |
**示例**
:
```
j
s
```
t
s
reminderAgent
.
getValidReminders
().
then
((
reminders
)
=>
{
console
.
log
(
"
promise, getValidReminders length =
"
+
reminders
.
length
);
for
(
let
i
=
0
;
i
<
reminders
.
length
;
i
++
)
{
...
...
@@ -222,21 +235,23 @@ reminderAgent.getValidReminders().then((reminders) => {
## reminderAgent.cancelAllReminders
cancelAllReminders(callback: AsyncCallback
<
void
>
): void
```
ts
cancelAllReminders
(
callback
:
AsyncCallback
<
void
>
):
void
```
取消当前应用所有的提醒,使用
callback
方式实现异步调用。
取消当前应用所有的提醒,使用
回调的
方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callback | AsyncCallback
<
void
>
| 是 | 异步回调。 |
| callback | AsyncCallback
\<
void
\>
| 是 | 异步回调。 |
**示例**
:
```
j
s
```
t
s
reminderAgent
.
cancelAllReminders
((
err
,
data
)
=>
{
console
.
log
(
"
cancelAllReminders callback
"
)
})
...
...
@@ -245,45 +260,48 @@ reminderAgent.cancelAllReminders((err, data) =>{
## reminderAgent.cancelAllReminders
cancelAllReminders(): Promise
<
void
>
```
ts
cancelAllReminders
():
Promise
<
void
>
```
取消当前应用所有的提醒,使用Promise方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
void
>
| Promise类型异步回调。 |
| Promise
\<
void
\>
| Promise类型异步回调。 |
**示例**
:
```
j
s
```
t
s
reminderAgent
.
cancelAllReminders
().
then
(()
=>
{
console
.
log
(
"
cancelAllReminders promise
"
)
})
```
## reminderAgent.addNotificationSlot
addNotificationSlot(slot: NotificationSlot, callback: AsyncCallback
<
void
>
): void
```
ts
addNotificationSlot
(
slot
:
NotificationSlot
,
callback
:
AsyncCallback
<
void
>
):
void
```
添加一个NotificationSlot,使用
callback
方式实现异步调用。
添加一个NotificationSlot,使用
回调的
方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| slot |
[
NotificationSlot
](
js-apis-notification.md#notificationslot
)
| 是 | notification
slot实例,仅支持设置其type属性。 |
| callback | AsyncCallback
<
void
>
| 是 | 异步回调。 |
| slot |
[
NotificationSlot
](
js-apis-notification.md#notificationslot
)
| 是 | notification
\.
slot实例,仅支持设置其type属性。 |
| callback | AsyncCallback
\<
void
\>
| 是 | 异步回调。 |
**示例**
:
```
j
s
```
t
s
import
notification
from
'
@ohos.notification
'
let
mySlot
=
{
...
...
@@ -297,27 +315,29 @@ reminderAgent.addNotificationSlot(mySlot, (err, data) => {
## reminderAgent.addNotificationSlot
addNotificationSlot(slot: NotificationSlot): Promise
<
void
>
```
ts
addNotificationSlot
(
slot
:
NotificationSlot
):
Promise
<
void
>
```
添加一个NotificationSlot,使用Promise方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| slot |
[
NotificationSlot
](
js-apis-notification.md#notificationslot
)
| 是 | notification
slot实例,仅支持设置其type属性。 |
| slot |
[
NotificationSlot
](
js-apis-notification.md#notificationslot
)
| 是 | notification
\.
slot实例,仅支持设置其type属性。 |
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
void
>
| Promise类型异步回调。 |
| Promise
\<
void
\>
| Promise类型异步回调。 |
**示例**
:
```
j
s
```
t
s
import
notification
from
'
@ohos.notification
'
let
mySlot
=
{
...
...
@@ -331,22 +351,24 @@ reminderAgent.addNotificationSlot(mySlot).then(() => {
## reminderAgent.removeNotificationSlot
removeNotificationSlot(slotType: notification.SlotType, callback: AsyncCallback
<
void
>
): void
```
ts
removeNotificationSlot
(
slotType
:
notification
.
SlotType
,
callback
:
AsyncCallback
<
void
>
):
void
```
删除目标NotificationSlot,使用callback方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| slotType |
[
notification.SlotType
](
js-apis-notification.md#slottype
)
| 是 | 目标notification
slot的类型。 |
| callback | AsyncCallback
<
void
>
| 是 | 异步回调。 |
| slotType |
[
notification.SlotType
](
js-apis-notification.md#slottype
)
| 是 | 目标notification
\.
slot的类型。 |
| callback | AsyncCallback
\<
void
\>
| 是 | 异步回调。 |
**示例**
:
```
j
s
```
t
s
import
notification
from
'
@ohos.notification
'
reminderAgent
.
removeNotificationSlot
(
notification
.
SlotType
.
CONTENT_INFORMATION
,
(
err
,
data
)
=>
{
...
...
@@ -357,27 +379,29 @@ reminderAgent.removeNotificationSlot(notification.SlotType.CONTENT_INFORMATION,
## reminderAgent.removeNotificationSlot
removeNotificationSlot(slotType: notification.SlotType): Promise
<
void
>
```
ts
removeNotificationSlot
(
slotType
:
notification
.
SlotType
):
Promise
<
void
>
```
删除目标NotificationSlot,使用Promise方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| slotType |
[
notification.SlotType
](
js-apis-notification.md#slottype
)
| 是 | 目标notification
slot的类型。 |
| slotType |
[
notification.SlotType
](
js-apis-notification.md#slottype
)
| 是 | 目标notification
\.
slot的类型。 |
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
void
>
| Promise类型异步回调。 |
| Promise
\<
void
\>
| Promise类型异步回调。 |
**示例**
:
```
j
s
```
t
s
import
notification
from
'
@ohos.notification
'
reminderAgent
.
removeNotificationSlot
(
notification
.
SlotType
.
CONTENT_INFORMATION
).
then
(()
=>
{
...
...
@@ -390,7 +414,7 @@ reminderAgent.removeNotificationSlot(notification.SlotType.CONTENT_INFORMATION).
按钮的类型。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 值 | 说明 |
| -------- | -------- | -------- |
...
...
@@ -402,7 +426,7 @@ reminderAgent.removeNotificationSlot(notification.SlotType.CONTENT_INFORMATION).
提醒的类型。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 值 | 说明 |
| -------- | -------- | -------- |
...
...
@@ -415,7 +439,7 @@ reminderAgent.removeNotificationSlot(notification.SlotType.CONTENT_INFORMATION).
用于设置弹出的提醒通知信息上显示的按钮类型和标题。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -427,7 +451,7 @@ reminderAgent.removeNotificationSlot(notification.SlotType.CONTENT_INFORMATION).
点击提醒通知后跳转的目标ability信息。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -439,7 +463,7 @@ reminderAgent.removeNotificationSlot(notification.SlotType.CONTENT_INFORMATION).
全屏显示提醒到达时自动拉起的目标ability信息,该接口预留。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -451,7 +475,7 @@ reminderAgent.removeNotificationSlot(notification.SlotType.CONTENT_INFORMATION).
提醒实例对象,用于设置提醒类型、响铃时长等具体信息。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -476,13 +500,13 @@ ReminderRequestCalendar extends ReminderRequest
日历实例对象,用于设置提醒的时间。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| dateTime |
[
LocalDateTime
](
#localdatetime
)
| 是 | 指明提醒的目标时间。 |
| repeatMonths | Array
<
number
>
| 否 | 指明重复提醒的月份。 |
| repeatDays | Array
<
number
>
| 否 | 指明重复提醒的日期。 |
| repeatMonths | Array
\<
number
\>
| 否 | 指明重复提醒的月份。 |
| repeatDays | Array
\<
number
\>
| 否 | 指明重复提醒的日期。 |
## ReminderRequestAlarm
...
...
@@ -491,13 +515,13 @@ ReminderRequestAlarm extends ReminderRequest
闹钟实例对象,用于设置提醒的时间。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| hour | number | 是 | 指明提醒的目标时刻。 |
| minute | number | 是 | 指明提醒的目标分钟。 |
| daysOfWeek | Array
<
number
>
| 否 | 指明每周哪几天需要重复提醒。范围为周一到周末,对应数字为1到7。 |
| daysOfWeek | Array
\<
number
\>
| 否 | 指明每周哪几天需要重复提醒。范围为周一到周末,对应数字为1到7。 |
## ReminderRequestTimer
...
...
@@ -506,7 +530,7 @@ ReminderRequestTimer extends ReminderRequest
倒计时实例对象,用于设置提醒的时间。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -517,7 +541,7 @@ ReminderRequestTimer extends ReminderRequest
用于日历类提醒设置时指定时间信息。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
zh-cn/application-dev/reference/apis/js-apis-reminderAgentManager.md
浏览文件 @
ed110253
...
...
@@ -2,7 +2,7 @@
本模块提供后台代理提醒的能力。
开发应用时,开发者可以调用
后台提醒发布的接口创建定时提醒,包括倒计时、日历、闹钟三种提醒类型。使用后台代理提醒能力后,应用可以被冻结或退出
,计时和弹出提醒的功能将被后台系统服务代理。
开发应用时,开发者可以调用
相关接口创建定时提醒,包括倒计时、日历、闹钟这三类提醒类型。使用后台代理提醒能力后,应用被冻结或退出后
,计时和弹出提醒的功能将被后台系统服务代理。
> **说明:**
>
...
...
@@ -11,27 +11,29 @@
## 导入模块
```
```
ts
import
reminderAgentManager
from
'
@ohos.reminderAgentManager
'
;
```
## reminderAgentManager.publishReminder
publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback
<
number
>
): void
```
ts
publishReminder
(
reminderReq
:
ReminderRequest
,
callback
:
AsyncCallback
<
number
>
):
void
```
发布一个后台代理提醒,使用
callback方式实现异步调用,该方法需要申请通知弹窗
[
Notification.requestEnableNotification
](
js-apis-notification.md#notificationrequestenablenotification8
)
后才能调用。
发布一个后台代理提醒,使用
回调的方式实现异步调用,该方法需要申请通知弹窗权限
[
Notification.requestEnableNotification
](
js-apis-notification.md#notificationrequestenablenotification8
)
后才能调用。
**需要权限**
:
ohos.permission.PUBLISH_AGENT_REMINDER
**需要权限**
:
`ohos.permission.PUBLISH_AGENT_REMINDER`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| reminderReq |
[
ReminderRequest
](
#reminderrequest
)
| 是 | 需要发布的提醒实例。 |
| callback | AsyncCallback
<
number
>
| 是 | 异步回调,返回当前发布的提醒的reminderI
d。 |
| callback | AsyncCallback
\<
number
\>
| 是 | 异步回调,返回当前发布的提醒的i
d。 |
**错误码:**
...
...
@@ -43,11 +45,12 @@ publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback<number&
| 1700002 | The number of reminders exceeds the limit. |
**示例**
:
```
j
s
```
t
s
let
timer
=
{
reminderType
:
reminderAgentManager
.
ReminderType
.
REMINDER_TYPE_TIMER
,
triggerTimeInSeconds
:
10
}
try
{
reminderAgentManager
.
publishReminder
(
timer
,
(
err
,
reminderId
)
=>
{
if
(
err
)
{
...
...
@@ -64,13 +67,15 @@ try {
## reminderAgentManager.publishReminder
publishReminder(reminderReq: ReminderRequest): Promise
<
number
>
```
ts
publishReminder
(
reminderReq
:
ReminderRequest
):
Promise
<
number
>
```
发布一个后台代理提醒,使用
Promise方式实现异步调用,该方法需要申请通知弹窗
[
Notification.requestEnableNotification
](
js-apis-notification.md#notificationrequestenablenotification8
)
后才能调用。
发布一个后台代理提醒,使用
`Promise`
的方式实现异步调用,该方法需要申请通知弹窗权限
[
Notification.requestEnableNotification
](
js-apis-notification.md#notificationrequestenablenotification8
)
后才能调用。
**需要权限**
:
ohos.permission.PUBLISH_AGENT_REMINDER
**需要权限**
:
`ohos.permission.PUBLISH_AGENT_REMINDER`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -80,7 +85,7 @@ publishReminder(reminderReq: ReminderRequest): Promise<number>
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
number
>
| 返回提醒的reminderI
d。 |
| Promise
\<
number
\>
| 返回提醒的i
d。 |
**错误码:**
...
...
@@ -92,11 +97,12 @@ publishReminder(reminderReq: ReminderRequest): Promise<number>
| 1700002 | The number of reminders exceeds the limit. |
**示例**
:
```
j
s
```
t
s
let
timer
=
{
reminderType
:
reminderAgentManager
.
ReminderType
.
REMINDER_TYPE_TIMER
,
triggerTimeInSeconds
:
10
}
try
{
reminderAgentManager
.
publishReminder
(
timer
).
then
((
reminderId
)
=>
{
console
.
log
(
"
promise, reminderId =
"
+
reminderId
);
...
...
@@ -111,18 +117,20 @@ try {
## reminderAgentManager.cancelReminder
cancelReminder(reminderId: number, callback: AsyncCallback
<
void
>
): void
```
ts
cancelReminder
(
reminderId
:
number
,
callback
:
AsyncCallback
<
void
>
):
void
```
取消指定id的提醒,使用
callback
方式实现异步调用。
取消指定id的提醒,使用
回调的
方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| reminderId | number | 是 | 目标
reminder
的id号。 |
| callback | AsyncCallback
<
void
>
| 是 | 异步回调。 |
| reminderId | number | 是 | 目标
提醒
的id号。 |
| callback | AsyncCallback
\<
void
\>
| 是 | 异步回调。 |
**错误码:**
...
...
@@ -135,7 +143,7 @@ cancelReminder(reminderId: number, callback: AsyncCallback<void>): void
**示例**
:
```
j
s
```
t
s
try
{
reminderAgentManager
.
cancelReminder
(
1
,
(
err
,
data
)
=>
{
if
(
err
)
{
...
...
@@ -152,23 +160,25 @@ try {
## reminderAgentManager.cancelReminder
cancelReminder(reminderId: number): Promise
<
void
>
```
ts
cancelReminder
(
reminderId
:
number
):
Promise
<
void
>
```
取消指定id的提醒,使用
Promise
方式实现异步调用。
取消指定id的提醒,使用
`Promise`
方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| reminderId | number | 是 | 目标
reminder
的id号。 |
| reminderId | number | 是 | 目标
提醒
的id号。 |
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| P
romise
<
void
>
| Promise类型异步回调。 |
| P
Promise
\<
void
\>
| Promise类型异步回调。 |
**错误码:**
...
...
@@ -181,7 +191,7 @@ cancelReminder(reminderId: number): Promise<void>
**示例**
:
```
j
s
```
t
s
try
{
reminderAgentManager
.
cancelReminder
(
1
).
then
(()
=>
{
console
.
log
(
"
cancelReminder promise
"
);
...
...
@@ -193,20 +203,22 @@ try {
};
```
## reminderAgentManager.getValidReminders
getValidReminders(callback: AsyncCallback
<
Array
<
ReminderRequest
>>
): void
```
ts
getValidReminders
(
callback
:
AsyncCallback
<
Array
<
ReminderRequest
>>
):
void
```
获取当前应用已设置的所有有效(未过期)的提醒,使用
callback
方式实现异步调用。
获取当前应用已设置的所有有效(未过期)的提醒,使用
回调
方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callback | AsyncCallback
<
Array
<
[ReminderRequest](#reminderrequest)
>>
| 是 | 异步回调,返回当前应用已设置的所有有效(未过期)的提醒。 |
| callback | AsyncCallback
\<
Array
\<
[
ReminderRequest
](
#reminderrequest
)
\>\>
| 是 | 异步回调,返回当前应用已设置的所有有效(未过期)的提醒。 |
**错误码:**
...
...
@@ -218,7 +230,7 @@ getValidReminders(callback: AsyncCallback<Array<ReminderRequest>>):
**示例**
:
```
j
s
```
t
s
try
{
reminderAgentManager
.
getValidReminders
((
err
,
reminders
)
=>
{
if
(
err
)
{
...
...
@@ -253,20 +265,21 @@ try {
};
```
## reminderAgentManager.getValidReminders
getValidReminders(): Promise
<
Array
<
ReminderRequest
>>
```
ts
getValidReminders
():
Promise
<
Array
<
ReminderRequest
>>
```
获取当前应用已设置的所有有效(未过期)的提醒,使用Promise方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
Array
<
[ReminderRequest](#reminderrequest)
>>
| 返回当前应用已设置的所有有效(未过期)的提醒。 |
| Promise
\<
Array
\<
[
ReminderRequest
](
#reminderrequest
)
\>\>
| 返回当前应用已设置的所有有效(未过期)的提醒。 |
**错误码:**
...
...
@@ -278,7 +291,7 @@ getValidReminders(): Promise<Array<ReminderRequest>>
**示例**
:
```
j
s
```
t
s
try
{
reminderAgentManager
.
getValidReminders
().
then
((
reminders
)
=>
{
console
.
log
(
"
promise, getValidReminders length =
"
+
reminders
.
length
);
...
...
@@ -314,17 +327,19 @@ try {
## reminderAgentManager.cancelAllReminders
cancelAllReminders(callback: AsyncCallback
<
void
>
): void
```
ts
cancelAllReminders
(
callback
:
AsyncCallback
<
void
>
):
void
```
取消当前应用所有的提醒,使用
callback
方式实现异步调用。
取消当前应用所有的提醒,使用
回调的
方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callback | AsyncCallback
<
void
>
| 是 | 异步回调。 |
| callback | AsyncCallback
\<
void
\>
| 是 | 异步回调。 |
**错误码:**
...
...
@@ -336,7 +351,7 @@ cancelAllReminders(callback: AsyncCallback<void>): void
**示例**
:
```
j
s
```
t
s
try
{
reminderAgentManager
.
cancelAllReminders
((
err
,
data
)
=>
{
if
(
err
)
{
...
...
@@ -353,17 +368,19 @@ try {
## reminderAgentManager.cancelAllReminders
cancelAllReminders(): Promise
<
void
>
```
ts
cancelAllReminders
():
Promise
<
void
>
```
取消当前应用所有的提醒,使用Promise方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
void
>
| Promise类型异步回调。 |
| Promise
\<
void
\>
| Promise类型异步回调。 |
**错误码:**
...
...
@@ -375,7 +392,7 @@ cancelAllReminders(): Promise<void>
**示例**
:
```
j
s
```
t
s
try
{
reminderAgentManager
.
cancelAllReminders
().
then
(()
=>
{
console
.
log
(
"
cancelAllReminders promise
"
)
...
...
@@ -390,22 +407,24 @@ try {
## reminderAgentManager.addNotificationSlot
addNotificationSlot(slot: NotificationSlot, callback: AsyncCallback
<
void
>
): void
```
ts
addNotificationSlot
(
slot
:
NotificationSlot
,
callback
:
AsyncCallback
<
void
>
):
void
```
添加一个NotificationSlot,使用
callback
方式实现异步调用。
添加一个NotificationSlot,使用
回调的
方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| slot |
[
NotificationSlot
](
js-apis-notification.md#notificationslot
)
| 是 | notification
slot实例,仅支持设置其type属性。 |
| callback | AsyncCallback
<
void
>
| 是 | 异步回调。 |
| slot |
[
NotificationSlot
](
js-apis-notification.md#notificationslot
)
| 是 | notification
\.
slot实例,仅支持设置其type属性。 |
| callback | AsyncCallback
\<
void
\>
| 是 | 异步回调。 |
**示例**
:
```
j
s
```
t
s
import
notification
from
'
@ohos.notification
'
let
mySlot
=
{
...
...
@@ -427,27 +446,29 @@ try {
## reminderAgentManager.addNotificationSlot
addNotificationSlot(slot: NotificationSlot): Promise
<
void
>
```
ts
addNotificationSlot
(
slot
:
NotificationSlot
):
Promise
<
void
>
```
添加一个NotificationSlot,使用Promise方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| slot |
[
NotificationSlot
](
js-apis-notification.md#notificationslot
)
| 是 | notification
slot实例,仅支持设置其type属性。 |
| slot |
[
NotificationSlot
](
js-apis-notification.md#notificationslot
)
| 是 | notification
\.
slot实例,仅支持设置其type属性。 |
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
void
>
| Promise类型异步回调。 |
| Promise
\<
void
\>
| Promise类型异步回调。 |
**示例**
:
```
j
s
```
t
s
import
notification
from
'
@ohos.notification
'
let
mySlot
=
{
...
...
@@ -467,22 +488,24 @@ try {
## reminderAgentManager.removeNotificationSlot
removeNotificationSlot(slotType: notification.SlotType, callback: AsyncCallback
<
void
>
): void
```
ts
removeNotificationSlot
(
slotType
:
notification
.
SlotType
,
callback
:
AsyncCallback
<
void
>
):
void
```
删除目标NotificationSlot,使用
callback
方式实现异步调用。
删除目标NotificationSlot,使用
回调的
方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| slotType |
[
notification.SlotType
](
js-apis-notification.md#slottype
)
| 是 | 目标notification
slot的类型。 |
| callback | AsyncCallback
<
void
>
| 是 | 异步回调。 |
| slotType |
[
notification.SlotType
](
js-apis-notification.md#slottype
)
| 是 | 目标notification
\.
slot的类型。 |
| callback | AsyncCallback
\<
void
\>
| 是 | 异步回调。 |
**示例**
:
```
j
s
```
t
s
import
notification
from
'
@ohos.notification
'
try
{
...
...
@@ -501,27 +524,29 @@ try {
## reminderAgentManager.removeNotificationSlot
removeNotificationSlot(slotType: notification.SlotType): Promise
<
void
>
```
ts
removeNotificationSlot
(
slotType
:
notification
.
SlotType
):
Promise
<
void
>
```
删除目标NotificationSlot,使用Promise方式实现异步调用。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| slotType |
[
notification.SlotType
](
js-apis-notification.md#slottype
)
| 是 | 目标notification
slot的类型。 |
| slotType |
[
notification.SlotType
](
js-apis-notification.md#slottype
)
| 是 | 目标notification
\.
slot的类型。 |
**返回值**
:
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
void
>
| Promise类型异步回调。 |
| Promise
\<
void
\>
| Promise类型异步回调。 |
**示例**
:
```
j
s
```
t
s
import
notification
from
'
@ohos.notification
'
try
{
...
...
@@ -539,7 +564,7 @@ try {
按钮的类型。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 值 | 说明 |
| -------- | -------- | -------- |
...
...
@@ -551,7 +576,7 @@ try {
提醒的类型。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 值 | 说明 |
| -------- | -------- | -------- |
...
...
@@ -564,7 +589,7 @@ try {
用于设置弹出的提醒通知信息上显示的按钮类型和标题。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -574,9 +599,9 @@ try {
## WantAgent
点击提醒通知后跳转的目标
ability
信息。
点击提醒通知后跳转的目标
`ability`
信息。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -588,7 +613,7 @@ try {
全屏显示提醒到达时自动拉起的目标ability信息,该接口预留。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -600,7 +625,7 @@ try {
提醒实例对象,用于设置提醒类型、响铃时长等具体信息。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -625,13 +650,13 @@ ReminderRequestCalendar extends ReminderRequest
日历实例对象,用于设置提醒的时间。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| dateTime |
[
LocalDateTime
](
#localdatetime
)
| 是 | 指明提醒的目标时间。 |
| repeatMonths | Array
<
number
>
| 否 | 指明重复提醒的月份。 |
| repeatDays | Array
<
number
>
| 否 | 指明重复提醒的日期。 |
| repeatMonths | Array
\<
number
\>
| 否 | 指明重复提醒的月份。 |
| repeatDays | Array
\<
number
\>
| 否 | 指明重复提醒的日期。 |
## ReminderRequestAlarm
...
...
@@ -640,13 +665,13 @@ ReminderRequestAlarm extends ReminderRequest
闹钟实例对象,用于设置提醒的时间。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| hour | number | 是 | 指明提醒的目标时刻。 |
| minute | number | 是 | 指明提醒的目标分钟。 |
| daysOfWeek | Array
<
number
>
| 否 | 指明每周哪几天需要重复提醒。范围为周一到周末,对应数字为1到7。 |
| daysOfWeek | Array
\<
number
\>
| 否 | 指明每周哪几天需要重复提醒。范围为周一到周末,对应数字为1到7。 |
## ReminderRequestTimer
...
...
@@ -655,7 +680,7 @@ ReminderRequestTimer extends ReminderRequest
倒计时实例对象,用于设置提醒的时间。
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
@@ -666,7 +691,7 @@ ReminderRequestTimer extends ReminderRequest
用于日历类提醒设置时指定时间信息。
**系统能力**
:
以下各项对应的系统能力均为SystemCapability.Notification.ReminderAgent
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
...
...
zh-cn/application-dev/reference/errorcodes/errorcode-CommonEventService.md
浏览文件 @
ed110253
...
...
@@ -6,27 +6,27 @@
Want action is null
**错误描述**
发送事件的
want中的Action
属性为空时系统会产生此错误码。
发送事件的
`want`
中的
`Action`
属性为空时系统会产生此错误码。
**可能原因**
发送事件的
want中的Action
属性为空。
发送事件的
`want`
中的
`Action`
属性为空。
**处理步骤**
检查传入
want的Action
属性是否为空。
检查传入
`want`
的
`Action`
属性是否为空。
## 1500002 沙箱
引
用无法发送公共事件
## 1500002 沙箱
应
用无法发送公共事件
**错误信息**
sandbox application can not send common event
**错误描述**
沙箱
引
用无法发送公共事件。
沙箱
应
用无法发送公共事件。
**可能原因**
事件发送方应用为沙箱应用,发送事件会被拦截。
**处理步骤**
检查事件发送是否为沙箱应用,若是,则无法发送。请不要使用沙箱应用发送事件
。
沙箱应用无法发送公共事件,发送公共事件前确认是否为沙箱应用
。
## 1500003 事件发送频率过高
...
...
@@ -54,7 +54,7 @@ not System services or System app
非系统应用或非系统服务发送系统公共事件。
**处理步骤**
检查应用是否为系统应用或者系统服务;若不是,则无法发送
。
确认当前应用是否为系统应用,或当前服务是否为系统服务
。
## 1500005 未找到订阅者
...
...
@@ -73,24 +73,24 @@ subscriber can not found
## 1500006 无效userId
**错误信息**
us
re
Id is invalid
us
er
Id is invalid
**错误描述**
无效的userId。
**可能原因**
和系统
userId不一致或不是系统应用或子系统
进程。
和系统
`userId`
不一致或不是系统应用或系统服务
进程。
**处理步骤**
检查当前userId是否和系统userId一致;若不一致,检查系统应用或子系统进程
。
1.
检查当前
`userId`
是否和系统
`userId`
一致
。
2.
检查当前应用是否为系统应用或系统服务。
## 1500007 IPC请求发送失败
**错误信息**
message send error
**错误描述**
IPC
发送请求失败。
`IPC`
发送请求失败。
**可能原因**
没有成功创建连接对象。
...
...
zh-cn/application-dev/reference/errorcodes/errorcode-DistributedNotificationService.md
浏览文件 @
ed110253
...
...
@@ -8,11 +8,11 @@ Internal Error.
**错误描述**
当
内存申请、多线程处理异常等内部处理错误
,系统会报此错误码。
当
发生内存申请失败、多线程处理失败等异常时
,系统会报此错误码。
**可能原因**
1.
内存申请
、多线程处理
等内核通用错误。
1.
内存申请
失败、多线程处理失败
等内核通用错误。
**处理步骤**
...
...
@@ -36,8 +36,9 @@ IPC Error.
**处理步骤**
1.
确认参入参数是否超长。
2.
确认通知子系统是否启动中。
1.
确认输入参数是否超长。
2.
确认输入参数是否合法。
3.
确认通知子系统是否已启动。
## 1600003 连接服务错误
...
...
@@ -47,7 +48,7 @@ Failed to connect to service.
**错误描述**
当连接服务失败
使
通知子系统异常时,系统会报此错误码。
当连接服务失败
而导致
通知子系统异常时,系统会报此错误码。
**可能原因**
...
...
@@ -55,8 +56,8 @@ Failed to connect to service.
**处理步骤**
1.
服务繁忙
,请稍后重
试。
2.
确认通知子系统是否启动。
1.
服务繁忙
时,需要再次尝
试。
2.
确认通知子系统是否
正常
启动。
## 1600004 通知使能未开启
...
...
@@ -70,7 +71,7 @@ Notification is not enabled.
**可能原因**
1.
应用的通知使能是
初始的未开启状态或者被用户
关闭。
1.
应用的通知使能是
未开启状态或者被用户手动
关闭。
**处理步骤**
...
...
@@ -102,17 +103,17 @@ Notification is not allowed to remove.
**错误描述**
当通知设置isUnremoveable=true标识时全清,当设置isRemoveAllowed=false时,删除时,系统会报此错误码
。
删除通知时不具有相应的权限
。
**可能原因**
1.
通知
上设置了isUnremoveable=true标识,不允许全清只允许单条删除
。
2.
通知
上设置了isRemoveAllowed=false,不允许删除
。
1.
通知
设置
`isUnremovable`
为
`true`
,只允许删除单条通知,而不允许删除全部通知
。
2.
通知
设置
`isRemoveAllowed`
为
`false`
,不允许删除通知
。
**处理步骤**
1.
检查通知是否设置了
unremovable=true标识
。
2.
检查通知是否设置了
isRemoveAllowed=false标识
。
1.
检查通知是否设置了
`isUnremovable`
为
`true`
。
2.
检查通知是否设置了
`isRemoveAllowed`
为
`false`
。
## 1600007 通知不存在
...
...
@@ -122,7 +123,7 @@ The notification is not exist.
**错误描述**
当通知
被删除或取消,
不存在时,系统会报此错误码。
当通知不存在时,系统会报此错误码。
**可能原因**
...
...
@@ -141,7 +142,7 @@ The user is not exist.
**错误描述**
用
当用户ID错误,或设备用户未激活时,系统会报此错误码。
当用户ID错误,或设备用户未激活时,系统会报此错误码。
**可能原因**
...
...
@@ -206,8 +207,8 @@ Read template config failed.
**处理步骤**
1.
检查系统
/system/etc/notification_template/external.json
文件是否存在。
2.
升级版本到3.2及以上。
1.
检查系统
`/system/etc/notification_template/external.json`
文件是否存在。
2.
升级
系统
版本到3.2及以上。
## 17700001 包名不存在
...
...
zh-cn/application-dev/reference/errorcodes/errorcode-reminderAgentManager.md
浏览文件 @
ed110253
...
...
@@ -8,16 +8,16 @@ Notification is not enabled.
**错误描述**
当调用发布提醒接口时,
未
允许应用发送通知。
当调用发布提醒接口时,
不
允许应用发送通知。
**可能原因**
1.
未申请通知使能。
1.
未申请通知使能
权限
。
2.
通知使能被关闭。
**处理步骤**
1.
申请通知使能弹窗
[
Notification.requestEnableNotification
](
../apis/js-apis-notification.md#notificationrequestenablenotification8
)
。
1.
申请通知使能
权限
弹窗
[
Notification.requestEnableNotification
](
../apis/js-apis-notification.md#notificationrequestenablenotification8
)
。
2.
检查通知使能是否被关闭。
## 1700002 提醒数量超出限制
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录