Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
4198fe33
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,发现更多精彩内容 >>
提交
4198fe33
编写于
8月 31, 2022
作者:
廖
廖康康
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
提醒代理文档更新
Signed-off-by:
N
廖康康
<
liaokangkang@huawei.com
>
上级
eb9ea58e
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
11 addition
and
17 deletion
+11
-17
zh-cn/application-dev/notification/background-agent-scheduled-reminder-guide.md
...notification/background-agent-scheduled-reminder-guide.md
+9
-9
zh-cn/application-dev/reference/apis/js-apis-reminderAgent.md
...n/application-dev/reference/apis/js-apis-reminderAgent.md
+2
-8
未找到文件。
zh-cn/application-dev/notification/background-agent-scheduled-reminder-guide.md
浏览文件 @
4198fe33
# 开发指导
#
后台提醒
开发指导
## 场景介绍
...
...
@@ -13,12 +13,12 @@ reminderAgent:封装了发布、取消提醒类通知的方法
| 接口名 | 描述 |
| -------- | -------- |
|
function
publishReminder(reminderReq:
ReminderRequest,
callback:
AsyncCallback
<
number
>
):
void;
<br/>
function
publishReminder(reminderReq:
ReminderRequest):
Promise
<
number
>
; | 发布一个定时提醒类通知。
<br/>
单个应用有效的提醒个数最多支持30个(不包括已经超时,即后续不会再提醒的提醒实例)
<br/>
整个系统有效的提醒个数最多支持2000个(不包括已经超时,即后续不会再提醒的提醒实例) |
|
function
cancelReminder(reminderId:
number,
callback:
AsyncCallback
<
void
>
):
void;
<br/>
function
cancelReminder(reminderId:
number):
Promise
<
void
>
; | 取消一个指定的提醒类通知。(reminderId从publishReminder的返回值获取) |
|
function
getValidReminders(callback:
AsyncCallback
<
Array
<
ReminderRequest
>>
):
void;
<br/>
function
getValidReminders():
Promise
<
Array
<
ReminderRequest
>>
; | 获取当前应用设置的所有有效的提醒。 |
|
function
cancelAllReminders(callback:
AsyncCallback
<
void
>
):
void;
<br/>
function
cancelAllReminders():
Promise
<
void
>
; | 取消当前应用设置的所有提醒 |
|
function
addNotificationSlot(slot:
NotificationSlot,
callback:
AsyncCallback
<
void
>
):
void;
<br/>
function
addNotificationSlot(slot:
NotificationSlot):
Promise
<
void
>
; | 注册一个提醒类需要使用的NotificationSlot |
|
function
removeNotificationSlot(slotType:
notification.SlotType,
callback:
AsyncCallback
<
void
>
):
void;
<br/>
function
removeNotificationSlot(slotType:
notification.SlotType):
Promise
<
void
>
; | 删除指定类型的NotificationSlot |
|
publishReminder(reminderReq:
ReminderRequest,
callback:
AsyncCallback
<
number
>
):
void
<br/>
publishReminder(reminderReq:
ReminderRequest):
Promise
<
number
>
;
| 发布一个定时提醒类通知。
<br/>
单个应用有效的提醒个数最多支持30个(不包括已经超时,即后续不会再提醒的提醒实例)
<br/>
整个系统有效的提醒个数最多支持2000个(不包括已经超时,即后续不会再提醒的提醒实例) |
|
cancelReminder(reminderId:
number,
callback:
AsyncCallback
<
void
>
):
void
<br/>
cancelReminder(reminderId:
number):
Promise
<
void
>
;
| 取消一个指定的提醒类通知。(reminderId从publishReminder的返回值获取) |
|
getValidReminders(callback:
AsyncCallback
<
Array
<
ReminderRequest
>>
):
void
<br/>
getValidReminders():
Promise
<
Array
<
ReminderRequest
>>
;
| 获取当前应用设置的所有有效的提醒。 |
|
cancelAllReminders(callback:
AsyncCallback
<
void
>
):
void
<br/>
cancelAllReminders():
Promise
<
void
>
;
| 取消当前应用设置的所有提醒 |
|
addNotificationSlot(slot:
NotificationSlot,
callback:
AsyncCallback
<
void
>
):
void
<br/>
addNotificationSlot(slot:
NotificationSlot):
Promise
<
void
>
;
| 注册一个提醒类需要使用的NotificationSlot |
|
removeNotificationSlot(slotType:
notification.SlotType,
callback:
AsyncCallback
<
void
>
):
void
<br/>
removeNotificationSlot(slotType:
notification.SlotType):
Promise
<
void
>
;
| 删除指定类型的NotificationSlot |
enum ActionButtonType: 在提醒弹出的通知界面上的按钮的类型。
...
...
@@ -133,9 +133,9 @@ interface LocalDateTime:时间信息实例
## 开发步骤
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
>
> 1. 应用需要配置权限:ohos.permission.PUBLISH_AGENT_REMINDER
>
> 2. 应用需要申请通知弹窗:[Notification.requestEnableNotification](../reference/apis/js-apis-notification.md#notificationrequestenablenotification8)
发布一个10秒倒计时提醒
...
...
zh-cn/application-dev/reference/apis/js-apis-reminderAgent.md
浏览文件 @
4198fe33
...
...
@@ -19,10 +19,7 @@ import reminderAgent from'@ohos.reminderAgent';
publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback
<
number
>
): void
发布一个后台代理提醒,使用callback方式实现异步调用。
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 应用需要申请通知弹窗:[Notification.requestEnableNotification](js-apis-notification.md#notificationrequestenablenotification8)。
发布一个后台代理提醒,使用callback方式实现异步调用,该方法需要申请通知弹窗
[
Notification.requestEnableNotification
](
js-apis-notification.md#notificationrequestenablenotification8
)
后才能调用。
**需要权限**
: ohos.permission.PUBLISH_AGENT_REMINDER
...
...
@@ -51,10 +48,7 @@ publishReminder(reminderReq: ReminderRequest, callback: AsyncCallback<number&
publishReminder(reminderReq: ReminderRequest): Promise
<
number
>
发布一个后台代理提醒,使用Promise方式实现异步调用。
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 应用需要申请通知弹窗:[Notification.requestEnableNotification](js-apis-notification.md#notificationrequestenablenotification8)。
发布一个后台代理提醒,使用Promise方式实现异步调用,该方法需要申请通知弹窗
[
Notification.requestEnableNotification
](
js-apis-notification.md#notificationrequestenablenotification8
)
后才能调用。
**需要权限**
: ohos.permission.PUBLISH_AGENT_REMINDER
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录