Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
1de5138d
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,发现更多精彩内容 >>
未验证
提交
1de5138d
编写于
10月 28, 2022
作者:
O
openharmony_ci
提交者:
Gitee
10月 28, 2022
浏览文件
操作
浏览文件
下载
差异文件
!11096 修改文档描述
Merge pull request !11096 from luoying_ace/ly1024
上级
2ad02200
3e9311a8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
9 addition
and
9 deletion
+9
-9
zh-cn/application-dev/reference/apis/js-apis-system-router.md
...n/application-dev/reference/apis/js-apis-system-router.md
+2
-2
zh-cn/application-dev/reference/apis/js-apis-timer.md
zh-cn/application-dev/reference/apis/js-apis-timer.md
+7
-7
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-system-router.md
浏览文件 @
1de5138d
...
...
@@ -379,7 +379,7 @@ export default {
| message | string | 是 | 询问对话框内容。 |
| success | (errMsg: string) => void | 否 | 用户选择对话框确认按钮时触发,errMsg表示返回信息。 |
| cancel | (errMsg: string) => void | 否 | 用户选择对话框取消按钮时触发,errMsg表示返回信息。 |
| complete | () => void | 否 |
接口调用结束的回调函数
。 |
| complete | () => void | 否 |
当对话框关闭时触发该回调
。 |
## DisableAlertBeforeBackPageOptions<sup>6+</sup>
...
...
@@ -391,7 +391,7 @@ export default {
| -------- | ------------------------ | ---- | -------------------------------------------------- |
| success | (errMsg: string) => void | 否 | 关闭询问对话框能力成功时触发,errMsg表示返回信息。 |
| cancel | (errMsg: string) => void | 否 | 关闭询问对话框能力失败时触发,errMsg表示返回信息。 |
| complete | () => void | 否 |
接口调用结束的回调函数
。 |
| complete | () => void | 否 |
当对话框关闭时触发该回调
。 |
## ParamsInterface
...
...
zh-cn/application-dev/reference/apis/js-apis-timer.md
浏览文件 @
1de5138d
...
...
@@ -8,7 +8,7 @@
## setTimeout
setTimeout(handler
[,delay[,…args]
]): number
setTimeout(handler
: Function | string, delay?: number, ...arguments: any[
]): number
设置一个定时器,该定时器在定时器到期后执行一个函数。
...
...
@@ -18,9 +18,9 @@ setTimeout(handler[,delay[,…args]]): number
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| handler | Function | 是 | 定时器到期后执行函数。 |
| handler | Function
\|
string
| 是 | 定时器到期后执行函数。 |
| delay | number | 否 | 延迟的毫秒数,函数的调用会在该延迟之后发生。如果省略该参数,delay取默认值0,意味着“马上”执行,或尽快执行。 |
| ...args | Array
<
any
>
| 否 | 附加参数,一旦定时器到期,它们会作为参数传递给handler。 |
| ...arg
ument
s | Array
<
any
>
| 否 | 附加参数,一旦定时器到期,它们会作为参数传递给handler。 |
**返回值:**
...
...
@@ -71,7 +71,7 @@ clearTimeout(timeoutID: number): void
## setInterval
setInterval(handler
[, delay[, ...args]
]): number
setInterval(handler
: Function | string, delay: number, ...arguments: any[
]): number
重复调用一个函数,在每次调用之间具有固定的时间延迟。
...
...
@@ -81,9 +81,9 @@ setInterval(handler[, delay[, ...args]]): number
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| handler | Function | 是 | 要重复调用的函数。 |
| delay | number |
否
| 延迟的毫秒数(一秒等于1000毫秒),函数的调用会在该延迟之后发生。 |
| ...args | Array
<
any
>
| 否 | 附加参数,一旦定时器到期,他们会作为参数传递给handler。 |
| handler | Function
\|
string
| 是 | 要重复调用的函数。 |
| delay | number |
是
| 延迟的毫秒数(一秒等于1000毫秒),函数的调用会在该延迟之后发生。 |
| ...arg
ument
s | Array
<
any
>
| 否 | 附加参数,一旦定时器到期,他们会作为参数传递给handler。 |
**返回值:**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录