Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
d38686eb
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看板
提交
d38686eb
编写于
12月 28, 2021
作者:
O
openharmony_ci
提交者:
Gitee
12月 28, 2021
浏览文件
操作
浏览文件
下载
差异文件
!1040 add notification api
Merge pull request !1040 from zero-cyc/1227_beta
上级
c5c31ae8
865c087e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
217 addition
and
6 deletion
+217
-6
zh-cn/application-dev/reference/apis/js-apis-notification.md
zh-cn/application-dev/reference/apis/js-apis-notification.md
+217
-6
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-notification.md
浏览文件 @
d38686eb
...
...
@@ -194,12 +194,26 @@ NotificationContent类型说明
-
NotificationActionButton类型说明
| 名称 | 读写属性 | 类型 | 必填 | 描述 |
| --------- | -------- | -------------- | ---- | ------------------------- |
| title | 读、写 | string | 是 | 按钮标题 |
| wantAgent | 读、写 | wantAgent | 是 | 点击按钮时触发的WantAgent |
| extras | 读、写 | Array
<String>
| 否 | 按钮扩展信息 |
| icon | 读、写 | image.PixelMap | 否 | 按钮图标 |
| 名称 | 读写属性 | 类型 | 必填 | 描述 |
| ---------------------- | -------- | ----------------------------------------------- | ---- | ------------------------- |
| title | 读、写 | string | 是 | 按钮标题 |
| wantAgent | 读、写 | wantAgent | 是 | 点击按钮时触发的WantAgent |
| extras | 读、写 | Array
<String>
| 否 | 按钮扩展信息 |
| icon | 读、写 | image.PixelMap | 否 | 按钮图标 |
| userInput
<sup>
8+
</sup>
| 读、写 |
[
NotificationUserInput
](
#NotificationUserInput
)
| 否 | 用户输入对象实例 |
## NotificationUserInput<sup>8+</sup>
用户输入对象。
### 属性
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | ---- | ---- | ----------------------------- |
| inputKey | string | 是 | 是 | 用户输入时用于标识此输入的key |
-
返回值
...
...
@@ -829,6 +843,203 @@ Notification.getActiveNotifications().then((data) => {
## notification.setDoNotDisturbDate<sup>8+</sup>
setDoNotDisturbDate(date:DoNotDisturbDate,callback: AsyncCallback
<
void
>
): void
设置免打扰时间。
需要权限ohos.permission.NOTIFICATION_CONTROLLER
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------- | ---- | ---------------------- |
| date |
[
DoNotDisturbDate
](
#DoNotDisturbDate
)
| 是 | 免打扰时间选项 |
| callback | AsyncCallback
<
void
>
| 是 | 设置免打扰时间回调函数 |
-
示例:
```
function setDoNotDisturbDateCallback(err) {
console.info("setDoNotDisturbDateCallback");
}
var doNotDisturbDate = {
type : notification.DoNotDisturbType.TYPE_ONCE,
begin : new Date(),
end : new Date(2021, 11, 15, 18, 0)
}
notification.setDoNotDisturbDate(doNotDisturbDate, setDoNotDisturbDateCallback);
```
## notification.setDoNotDisturbDate<sup>8+</sup>
setDoNotDisturbDate(date:DoNotDisturbDate): Promise
\<
void
\>
设置免打扰时间。
需要权限ohos.permission.NOTIFICATION_CONTROLLER
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------------------------------------- | ---- | -------------- |
| date |
[
DoNotDisturbDate
](
#DoNotDisturbDate
)
| 是 | 免打扰时间选项 |
-
返回值:
| 类型 | 说明 |
| --------------- | --------------- |
| Promise
\<
void
\>
| Promise方式返回 |
-
示例:
```
var doNotDisturbDate = {
type : notification.DoNotDisturbType.TYPE_ONCE,
begin : new Date(),
end : new Date(2021, 11, 15, 18, 0)
}
notification.setDoNotDisturbDate(doNotDisturbDate).then(() => {
console.info("setDoNotDisturbDatePromise");
});
```
## notification.getDoNotDisturbDate<sup>8+</sup>
getDoNotDisturbDate(callback: AsyncCallback
\<
DoNotDisturbDate
\>
): void
查询免打扰时间。
需要权限ohos.permission.NOTIFICATION_CONTROLLER
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------------------------- | ---- | ---------------------- |
| callback | AsyncCallback
<
[DoNotDisturbDate](#DoNotDisturbDate)
>
| 是 | 查询免打扰时间回调函数 |
-
示例:
```
function getDoNotDisturbDateCallback(err,data) {
console.info("getDoNotDisturbDateCallback");
}
notification.getDoNotDisturbDate(getDoNotDisturbDateCallback);
```
## notification.getDoNotDisturbDate<sup>8+</sup>
getDoNotDisturbDate(): Promise
<
DoNotDisturbDate
>
查询免打扰时间。
需要权限ohos.permission.NOTIFICATION_CONTROLLER
-
返回值:
| 类型 | 说明 |
| ---------------------------------------------------- | ----------------------------- |
| Promise
<
[DoNotDisturbDate](#DoNotDisturbDate)
>
| Promise方式返回的免打时间信息 |
-
示例:
```
notification.getDoNotDisturbDate().then((data) => {
console.info("getDoNotDisturbDatePromise");
});
```
## notification.supportDoNotDisturbMode<sup>8+</sup>
supportDoNotDisturbMode(callback: AsyncCallback
\<
boolean
\>
): void
查询是否支持勿扰模式功能。
需要权限ohos.permission.NOTIFICATION_CONTROLLER
-
参数:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------- | ---- | -------------------------------- |
| callback | AsyncCallback
\<
boolean
\>
; | 是 | 查询是否支持勿扰模式功能回调函数 |
-
示例:
```
function supportDoNotDisturbModeCallback(err,data) {
console.info("supportDoNotDisturbModeCallback");
}
notification.supportDoNotDisturbMode(supportDoNotDisturbModeCallback);
```
## notification.supportDoNotDisturbMode<sup>8+</sup>
supportDoNotDisturbMode(): Promise
\<
boolean
\>
查询是否支持勿扰模式功能。
需要权限ohos.permission.NOTIFICATION_CONTROLLER
-
返回值:
| 类型 | 说明 |
| ------------------ | ------------------------- |
| Promise
\<
boolean
\>
| Promise方式返回的支持结果 |
-
示例:
```
notification.supportDoNotDisturbMode().then((data) => {
console.info("supportDoNotDisturbModePromise");
});
```
## DoNotDisturbType<sup>8+</sup>
免打扰时间类型。
| 名称 | 默认值 | 说明 |
| ------------ | ------ | -------------------------------------- |
| TYPE_NONE | 0 | 非通知勿扰类型 |
| TYPE_ONCE | 1 | 设置时间段内执行一次勿扰 |
| TYPE_DAILY | 2 | 设置时间段(只看小时和分钟)每天执行勿扰 |
| TYPE_CLEARLY | 3 | 以设置时间段(明确年月日时分)执行勿扰 |
## DoNotDisturbDate<sup>8+</sup>
免打扰时间。
### 属性
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| ----- | ------------------------------------- | ---- | ---- | ------------------------ |
| type |
[
DoNotDisturbType
](
#DoNotDisturbType
)
| 是 | 是 | 指定免打扰设置的时间类型 |
| begin | Date | 是 | 是 | 指定免打扰设置的起点时间 |
| end | Date | 是 | 是 | 指定免打扰设置的结束时间 |
#### WantAgent接口
#### 导入模块
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录