Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
f3141c2b
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,发现更多精彩内容 >>
未验证
提交
f3141c2b
编写于
7月 31, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 31, 2023
浏览文件
操作
浏览文件
下载
差异文件
!21645 定时器内容优化
Merge pull request !21645 from ningning/master
上级
aceb11e7
fc0b3441
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
4 addition
and
19 deletion
+4
-19
zh-cn/application-dev/reference/apis/js-apis-system-timer.md
zh-cn/application-dev/reference/apis/js-apis-system-timer.md
+4
-19
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-system-timer.md
浏览文件 @
f3141c2b
...
...
@@ -36,8 +36,8 @@ import systemTimer from '@ohos.systemTimer';
| 名称 | 类型 | 必填 | 说明 |
| --------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| type | number | 是 | 定时器类型。
<br>
取值为1,表示为系统启动时间定时器(定时器启动时间不能晚于当前设置的系统时间) ;
<br>
取值为2,表示为唤醒定时器;
<br>
取值为4,表示为精准定时器;
<br>
取值为8,表示为IDLE模式定时器(暂不支持)。 |
| repeat | boolean | 是 | true为循环定时器,false为单次定时器。 |
| interval | number | 否 |
如果是循环定时器,repeat值应大于5000毫秒,非重复定时器置
为0。 |
| repeat | boolean | 是 |
是否为循环定时器。
<br>
true为循环定时器,false为单次定时器。 |
| interval | number | 否 |
定时器时间间隔。
<br>
如果是循环定时器,interval值应大于5000毫秒;单次定时器interval值
为0。 |
| wantAgent |
[
WantAgent
](
js-apis-app-ability-wantAgent.md
)
| 否 | 设置通知的WantAgent,定时器到期后通知。(支持拉起应用MainAbility,暂不支持拉起ServiceAbility。) |
| callback | number | 是 | 以回调函数的形式返回定时器的ID。 |
...
...
@@ -48,8 +48,6 @@ createTimer(options: TimerOptions, callback: AsyncCallback<number>): void
创建定时器,使用callback异步回调。
**系统接口:**
此接口为系统接口
**系统能力:**
SystemCapability.MiscServices.Time
**参数:**
...
...
@@ -89,7 +87,6 @@ createTimer(options: TimerOptions): Promise<number>
创建定时器,使用Promise异步回调。
**系统接口:**
此接口为系统接口
**系统能力:**
SystemCapability.MiscServices.Time
...
...
@@ -131,9 +128,7 @@ export default {
startTimer(timer: number, triggerTime: number, callback: AsyncCallback
<
void
>
): void
开始定时器,使用callback异步回调。
**系统接口:**
此接口为系统接口
开启定时器,使用callback异步回调。
**系统能力:**
SystemCapability.MiscServices.Time
...
...
@@ -176,9 +171,7 @@ export default {
startTimer(timer: number, triggerTime: number): Promise
<
void
>
开始定时器,使用Promise异步回调。
**系统接口:**
此接口为系统接口
开启定时器,使用Promise异步回调。
**系统能力:**
SystemCapability.MiscServices.Time
...
...
@@ -226,8 +219,6 @@ stopTimer(timer: number, callback: AsyncCallback<void>): void
停止定时器,使用callback异步回调。
**系统接口:**
此接口为系统接口
**系统能力:**
SystemCapability.MiscServices.Time
**参数:**
...
...
@@ -271,8 +262,6 @@ stopTimer(timer: number): Promise<void>
停止定时器,使用Promise异步回调。
**系统接口:**
此接口为系统接口
**系统能力:**
SystemCapability.MiscServices.Time
**参数:**
...
...
@@ -319,8 +308,6 @@ destroyTimer(timer: number, callback: AsyncCallback<void>): void
销毁定时器,使用callback异步回调。
**系统接口:**
此接口为系统接口
**系统能力:**
SystemCapability.MiscServices.Time
**参数:**
...
...
@@ -365,8 +352,6 @@ destroyTimer(timer: number): Promise<void>
销毁定时器,使用Promise异步回调。
**系统接口:**
此接口为系统接口
**系统能力:**
SystemCapability.MiscServices.Time
**参数:**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录