Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
8bfd4983
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看板
未验证
提交
8bfd4983
编写于
5月 19, 2023
作者:
N
ningning
提交者:
Gitee
5月 19, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update zh-cn/application-dev/reference/apis/js-apis-reminderAgentManager.md.
Signed-off-by:
N
ningning
<
3248127340@qq.com
>
上级
0ccdae2e
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
44 addition
and
72 deletion
+44
-72
zh-cn/application-dev/reference/apis/js-apis-reminderAgentManager.md
...cation-dev/reference/apis/js-apis-reminderAgentManager.md
+44
-72
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-reminderAgentManager.md
浏览文件 @
8bfd4983
...
@@ -18,22 +18,20 @@ import reminderAgentManager from'@ohos.reminderAgentManager';
...
@@ -18,22 +18,20 @@ import reminderAgentManager from'@ohos.reminderAgentManager';
## reminderAgentManager.publishReminder
## reminderAgentManager.publishReminder
```
ts
publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback
\<
number>): void
publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback
\<
number>): void
```
发布一个后台代理提醒,使用回调的方式实现异步调用,该方法需要申请通知弹窗权限
[
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
)
| 是 | 需要发布的提醒实例。 |
| reminderReq |
[
ReminderRequest
](
#reminderrequest
)
| 是 | 需要发布的提醒实例。 |
| callback | AsyncCallback
\<
number
\
>
| 是 | 异步回调,返回当前发布的提醒的id。 |
| callback | AsyncCallback
\<
number> | 是 | 异步回调,返回当前发布的提醒的id。 |
**错误码:**
**错误码:**
...
@@ -67,15 +65,13 @@ try {
...
@@ -67,15 +65,13 @@ try {
## reminderAgentManager.publishReminder
## reminderAgentManager.publishReminder
```
ts
publishReminder(reminderReq: ReminderRequest): Promise
\<
number>
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
**参数**
:
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
...
@@ -85,7 +81,7 @@ publishReminder(reminderReq: ReminderRequest): Promise\<number>
...
@@ -85,7 +81,7 @@ publishReminder(reminderReq: ReminderRequest): Promise\<number>
**返回值**
:
**返回值**
:
| 类型 | 说明 |
| 类型 | 说明 |
| -------- | -------- |
| -------- | -------- |
| Promise
\<
number
\
>
| 返回提醒的id。 |
| Promise
\<
number> | 返回提醒的id。 |
**错误码:**
**错误码:**
...
@@ -117,20 +113,18 @@ try {
...
@@ -117,20 +113,18 @@ try {
## reminderAgentManager.cancelReminder
## reminderAgentManager.cancelReminder
```
ts
cancelReminder(reminderId: number, callback: AsyncCallback
\<
void>): void
cancelReminder(reminderId: number, callback: AsyncCallback
\<
void>): void
```
取消指定id的提醒,使用回调的方式实现异步调用。
取消指定id的提醒,使用回调的方式实现异步调用。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**参数**
:
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
| reminderId | number | 是 | 目标提醒的id号。 |
| reminderId | number | 是 | 目标提醒的id号。 |
| callback | AsyncCallback
\<
void
\
>
| 是 | 异步回调。 |
| callback | AsyncCallback
\<
void> | 是 | 异步回调。 |
**错误码:**
**错误码:**
...
@@ -160,13 +154,11 @@ try {
...
@@ -160,13 +154,11 @@ try {
## reminderAgentManager.cancelReminder
## reminderAgentManager.cancelReminder
```
ts
cancelReminder(reminderId: number): Promise
\<
void>
cancelReminder(reminderId: number): Promise
\<
void>
```
取消指定id的提醒,使用
`Promise`
方式实现异步调用。
取消指定id的提醒,使用
Promise
方式实现异步调用。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**参数**
:
**参数**
:
...
@@ -178,7 +170,7 @@ cancelReminder(reminderId: number): Promise\<void>
...
@@ -178,7 +170,7 @@ cancelReminder(reminderId: number): Promise\<void>
| 类型 | 说明 |
| 类型 | 说明 |
| -------- | -------- |
| -------- | -------- |
| PPromise
\<
void
\
>
| Promise类型异步回调。 |
| PPromise
\<
void> | Promise类型异步回调。 |
**错误码:**
**错误码:**
...
@@ -205,20 +197,18 @@ try {
...
@@ -205,20 +197,18 @@ try {
## reminderAgentManager.getValidReminders
## reminderAgentManager.getValidReminders
```
ts
getValidReminders(callback: AsyncCallback
<Array
\<
ReminderRequest
>
>): void
getValidReminders
(
callback
:
AsyncCallback
\
<
Array
\
<
ReminderRequest
>>
):
void
```
获取当前应用已设置的所有有效(未过期)的提醒,使用回调方式实现异步调用。
获取当前应用已设置的所有有效(未过期)的提醒,使用回调方式实现异步调用。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**参数**
:
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
| callback | AsyncCallback
\<
Array
\<
[
ReminderRequest
](
#reminderrequest
)
\>\
>
| 是 | 异步回调,返回当前应用已设置的所有有效(未过期)的提醒。 |
| callback | AsyncCallback
\<
Array
\<
[
ReminderRequest
](
#reminderrequest
)
>
> | 是 | 异步回调,返回当前应用已设置的所有有效(未过期)的提醒。 |
**错误码:**
**错误码:**
...
@@ -267,19 +257,17 @@ try {
...
@@ -267,19 +257,17 @@ try {
## reminderAgentManager.getValidReminders
## reminderAgentManager.getValidReminders
```
ts
getValidReminders(): Promise
\<
Array
\<
ReminderRequest>>
getValidReminders(): Promise
\<
Array
\<
ReminderRequest>>
```
获取当前应用已设置的所有有效(未过期)的提醒,使用Promise方式实现异步调用。
获取当前应用已设置的所有有效(未过期)的提醒,使用Promise方式实现异步调用。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**返回值**
:
**返回值**
:
| 类型 | 说明 |
| 类型 | 说明 |
| -------- | -------- |
| -------- | -------- |
| Promise
\<
Array
\<
[
ReminderRequest
](
#reminderrequest
)
\>\
>
| 返回当前应用已设置的所有有效(未过期)的提醒。 |
| Promise
\<
Array
\<
[
ReminderRequest
](
#reminderrequest
)
>
> | 返回当前应用已设置的所有有效(未过期)的提醒。 |
**错误码:**
**错误码:**
...
@@ -327,19 +315,17 @@ try {
...
@@ -327,19 +315,17 @@ try {
## reminderAgentManager.cancelAllReminders
## reminderAgentManager.cancelAllReminders
```
ts
cancelAllReminders(callback: AsyncCallback
\<
void>): void
cancelAllReminders(callback: AsyncCallback
\<
void>): void
```
取消当前应用所有的提醒,使用回调的方式实现异步调用。
取消当前应用所有的提醒,使用回调的方式实现异步调用。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**参数**
:
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
| callback | AsyncCallback
\<
void
\
>
| 是 | 异步回调。 |
| callback | AsyncCallback
\<
void> | 是 | 异步回调。 |
**错误码:**
**错误码:**
...
@@ -368,19 +354,17 @@ try {
...
@@ -368,19 +354,17 @@ try {
## reminderAgentManager.cancelAllReminders
## reminderAgentManager.cancelAllReminders
```
ts
cancelAllReminders(): Promise
\<
void>
cancelAllReminders(): Promise
\<
void>
```
取消当前应用所有的提醒,使用Promise方式实现异步调用。
取消当前应用所有的提醒,使用Promise方式实现异步调用。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**返回值**
:
**返回值**
:
| 类型 | 说明 |
| 类型 | 说明 |
| -------- | -------- |
| -------- | -------- |
| Promise
\<
void
\
>
| Promise类型异步回调。 |
| Promise
\<
void> | Promise类型异步回调。 |
**错误码:**
**错误码:**
...
@@ -407,20 +391,18 @@ try {
...
@@ -407,20 +391,18 @@ try {
## reminderAgentManager.addNotificationSlot
## reminderAgentManager.addNotificationSlot
```
ts
addNotificationSlot(slot: NotificationSlot, callback: AsyncCallback
\<
void>): void
addNotificationSlot(slot: NotificationSlot, callback: AsyncCallback
\<
void>): void
```
添加一个NotificationSlot,使用回调的方式实现异步调用。
添加一个NotificationSlot,使用回调的方式实现异步调用。
**系统能力**
:
`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属性。 |
| callback | AsyncCallback
\<
void
\
>
| 是 | 异步回调。 |
| callback | AsyncCallback
\<
void> | 是 | 异步回调。 |
**示例**
:
**示例**
:
...
@@ -446,13 +428,11 @@ try {
...
@@ -446,13 +428,11 @@ try {
## reminderAgentManager.addNotificationSlot
## reminderAgentManager.addNotificationSlot
```
ts
addNotificationSlot(slot: NotificationSlot): Promise
\<
void>
addNotificationSlot(slot: NotificationSlot): Promise
\<
void>
```
添加一个NotificationSlot,使用Promise方式实现异步调用。
添加一个NotificationSlot,使用Promise方式实现异步调用。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**参数**
:
**参数**
:
...
@@ -464,7 +444,7 @@ addNotificationSlot(slot: NotificationSlot): Promise\<void>
...
@@ -464,7 +444,7 @@ addNotificationSlot(slot: NotificationSlot): Promise\<void>
| 类型 | 说明 |
| 类型 | 说明 |
| -------- | -------- |
| -------- | -------- |
| Promise
\<
void
\
>
| Promise类型异步回调。 |
| Promise
\<
void> | Promise类型异步回调。 |
**示例**
:
**示例**
:
...
@@ -488,20 +468,18 @@ try {
...
@@ -488,20 +468,18 @@ try {
## reminderAgentManager.removeNotificationSlot
## reminderAgentManager.removeNotificationSlot
```
ts
removeNotificationSlot(slotType: notification.SlotType, callback: AsyncCallback
\<
void>): void
removeNotificationSlot(slotType: notification.SlotType, callback: AsyncCallback
\<
void>): void
```
删除目标NotificationSlot,使用回调的方式实现异步调用。
删除目标NotificationSlot,使用回调的方式实现异步调用。
**系统能力**
:
`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的类型。 |
| callback | AsyncCallback
\<
void
\
>
| 是 | 异步回调。 |
| callback | AsyncCallback
\<
void> | 是 | 异步回调。 |
**示例**
:
**示例**
:
...
@@ -524,13 +502,11 @@ try {
...
@@ -524,13 +502,11 @@ try {
## reminderAgentManager.removeNotificationSlot
## reminderAgentManager.removeNotificationSlot
```
ts
removeNotificationSlot(slotType: notification.SlotType): Promise
\<
void>
removeNotificationSlot(slotType: notification.SlotType): Promise
\<
void>
```
删除目标NotificationSlot,使用Promise方式实现异步调用。
删除目标NotificationSlot,使用Promise方式实现异步调用。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**参数**
:
**参数**
:
...
@@ -542,7 +518,7 @@ removeNotificationSlot(slotType: notification.SlotType): Promise\<void>
...
@@ -542,7 +518,7 @@ removeNotificationSlot(slotType: notification.SlotType): Promise\<void>
| 类型 | 说明 |
| 类型 | 说明 |
| -------- | -------- |
| -------- | -------- |
| Promise
\<
void
\
>
| Promise类型异步回调。 |
| Promise
\<
void> | Promise类型异步回调。 |
**示例**
:
**示例**
:
...
@@ -564,22 +540,20 @@ try {
...
@@ -564,22 +540,20 @@ try {
按钮的类型。
按钮的类型。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:SystemCapability.Notification.ReminderAgent
**系统接口**
: ACTION_BUTTON_TYPE_CUSTOM为系统接口,三方应用不支持调用。
| 名称 | 值 | 说明 |
| 名称 | 值 | 说明 |
| -------- | -------- | -------- |
| -------- | -------- | -------- |
| ACTION_BUTTON_TYPE_CLOSE | 0 | 表示关闭提醒的按钮。 |
| ACTION_BUTTON_TYPE_CLOSE | 0 | 表示关闭提醒的按钮。 |
| ACTION_BUTTON_TYPE_SNOOZE | 1 | 表示延迟提醒的按钮。 |
| ACTION_BUTTON_TYPE_SNOOZE | 1 | 表示延迟提醒的按钮。 |
| ACTION_BUTTON_TYPE_CUSTOM
<sup>
10+
</sup>
| 2 | 表示自定义的按钮。
(系统接口)
|
| ACTION_BUTTON_TYPE_CUSTOM
<sup>
10+
</sup>
| 2 | 表示自定义的按钮。
<br>
-
**系统接口**
: 系统接口,三方应用不支持调用。
|
## ReminderType
## ReminderType
提醒的类型。
提醒的类型。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
| 名称 | 值 | 说明 |
| 名称 | 值 | 说明 |
| -------- | -------- | -------- |
| -------- | -------- | -------- |
...
@@ -592,37 +566,35 @@ try {
...
@@ -592,37 +566,35 @@ try {
用于设置弹出的提醒通知信息上显示的按钮类型和标题。
用于设置弹出的提醒通知信息上显示的按钮类型和标题。
**系统接口**
: wantAgent为系统接口,三方应用不支持调用。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
| 名称 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
| title | string | 是 | 按钮显示的标题。 |
| title | string | 是 | 按钮显示的标题。 |
| type |
[
ActionButtonType
](
#actionbuttontype
)
| 是 | 按钮的类型。 |
| type |
[
ActionButtonType
](
#actionbuttontype
)
| 是 | 按钮的类型。 |
| wantAgent
<sup>
10+
</sup>
|
[
WantAgent
](
#wantagent
)
| 否 | 点击按钮跳转的ability信息。
(系统接口)
|
| wantAgent
<sup>
10+
</sup>
|
[
WantAgent
](
#wantagent
)
| 否 | 点击按钮跳转的ability信息。
<br>
-
**系统接口**
: 系统接口,三方应用不支持调用。
|
## WantAgent
## WantAgent
跳转目标的ability信息。
跳转目标的ability信息。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
**系统接口**
: uri为系统接口,三方应用不支持调用。
| 名称 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
| pkgName | string | 是 | 指明跳转的目标包名。 |
| pkgName | string | 是 | 指明跳转的目标包名。 |
| abilityName | string | 是 | 指明跳转的目标ability名称。 |
| abilityName | string | 是 | 指明跳转的目标ability名称。 |
| uri
<sup>
10+
</sup>
| string | 否 | 指明跳转目标的uri信息。
(系统接口)
|
| uri
<sup>
10+
</sup>
| string | 否 | 指明跳转目标的uri信息。
<br>
-
**系统接口**
: 系统接口,三方应用不支持调用。
|
## MaxScreenWantAgent
## MaxScreenWantAgent
全屏显示提醒到达时自动拉起的目标ability信息,该接口预留。
全屏显示提醒到达时自动拉起的目标ability信息,该接口预留。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
| 名称 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
...
@@ -634,7 +606,7 @@ try {
...
@@ -634,7 +606,7 @@ try {
提醒实例对象,用于设置提醒类型、响铃时长等具体信息。
提醒实例对象,用于设置提醒类型、响铃时长等具体信息。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
| 名称 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
...
@@ -661,13 +633,13 @@ ReminderRequestCalendar extends ReminderRequest
...
@@ -661,13 +633,13 @@ ReminderRequestCalendar extends ReminderRequest
日历实例对象,用于设置提醒的时间。
日历实例对象,用于设置提醒的时间。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
| 名称 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
| dateTime |
[
LocalDateTime
](
#localdatetime
)
| 是 | 指明提醒的目标时间。 |
| dateTime |
[
LocalDateTime
](
#localdatetime
)
| 是 | 指明提醒的目标时间。 |
| repeatMonths | Array
\<
number
\
>
| 否 | 指明重复提醒的月份。 |
| repeatMonths | Array
\<
number> | 否 | 指明重复提醒的月份。 |
| repeatDays | Array
\<
number
\
>
| 否 | 指明重复提醒的日期。 |
| repeatDays | Array
\<
number> | 否 | 指明重复提醒的日期。 |
## ReminderRequestAlarm
## ReminderRequestAlarm
...
@@ -676,13 +648,13 @@ ReminderRequestAlarm extends ReminderRequest
...
@@ -676,13 +648,13 @@ ReminderRequestAlarm extends ReminderRequest
闹钟实例对象,用于设置提醒的时间。
闹钟实例对象,用于设置提醒的时间。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
| 名称 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
| hour | number | 是 | 指明提醒的目标时刻。 |
| hour | number | 是 | 指明提醒的目标时刻。 |
| minute | number | 是 | 指明提醒的目标分钟。 |
| minute | number | 是 | 指明提醒的目标分钟。 |
| daysOfWeek | Array
\<
number
\
>
| 否 | 指明每周哪几天需要重复提醒。范围为周一到周末,对应数字为1到7。 |
| daysOfWeek | Array
\<
number> | 否 | 指明每周哪几天需要重复提醒。范围为周一到周末,对应数字为1到7。 |
## ReminderRequestTimer
## ReminderRequestTimer
...
@@ -691,7 +663,7 @@ ReminderRequestTimer extends ReminderRequest
...
@@ -691,7 +663,7 @@ ReminderRequestTimer extends ReminderRequest
倒计时实例对象,用于设置提醒的时间。
倒计时实例对象,用于设置提醒的时间。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
| 名称 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
...
@@ -702,7 +674,7 @@ ReminderRequestTimer extends ReminderRequest
...
@@ -702,7 +674,7 @@ ReminderRequestTimer extends ReminderRequest
用于日历类提醒设置时指定时间信息。
用于日历类提醒设置时指定时间信息。
**系统能力**
:
`SystemCapability.Notification.ReminderAgent`
**系统能力**
:
SystemCapability.Notification.ReminderAgent
| 名称 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| -------- | -------- | -------- | -------- |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录