Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
ed9512d6
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看板
提交
ed9512d6
编写于
5月 26, 2022
作者:
L
lovechinamo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Signed-off-by: lovechinamo <wangdongqi2@huawei.com>
Changes to be committed:
上级
9723f63a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
6 deletion
+15
-6
zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
+1
-0
zh-cn/application-dev/reference/apis/js-apis-system-time.md
zh-cn/application-dev/reference/apis/js-apis-system-time.md
+3
-2
zh-cn/application-dev/reference/apis/js-apis-timer.md
zh-cn/application-dev/reference/apis/js-apis-timer.md
+11
-4
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
浏览文件 @
ed9512d6
...
...
@@ -50,6 +50,7 @@ getInputMethodController(): InputMethodController
```
js
var
InputMethodController
=
inputMethod
.
getInputMethodController
();
```
## inputMethod.getInputMethodSetting<sup>8+</sup><a name="getInputMethodSetting"></a>
getInputMethodSetting(): InputMethodSetting
...
...
zh-cn/application-dev/reference/apis/js-apis-system-time.md
浏览文件 @
ed9512d6
# 设置系统时间
本模块用来设置、获取当前系统时间,设置、获取当前系统日期和设置、获取当前系统时区。
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
...
...
@@ -200,7 +201,7 @@ getRealActiveTime(isNano?: boolean): Promise<number>
## systemTime.getRealTime<sup>8+</sup>
getRealTime(callback: AsyncCallback
<
number
>
): void
getRealTime(
isNano?: boolean,
callback: AsyncCallback
<
number
>
): void
获取自系统启动以来经过的时间,包括深度睡眠时间,使用callback形式返回结果。
...
...
@@ -228,7 +229,7 @@ getRealTime(callback: AsyncCallback<number>): void
## systemTime.getRealTime<sup>8+</sup>
getRealTime(): Promise
<
number
>
getRealTime(
isNano?: boolean
): Promise
<
number
>
获取自系统启动以来经过的时间,包括深度睡眠时间,使用Promise形式返回结果。
...
...
zh-cn/application-dev/reference/apis/js-apis-timer.md
浏览文件 @
ed9512d6
...
...
@@ -3,6 +3,13 @@
## setTimeout
## 导入模块
```
import Time from '@ohos.Time';
```
setTimeout(handler[,delay[,…args]]): number
设置一个定时器,该定时器在定时器到期后执行一个函数。
...
...
@@ -20,7 +27,7 @@ setTimeout(handler[,delay[,…args]]): number
| number | timeout定时器的ID。 |
-
示例
```
```
js
export
default
{
setTimeOut
()
{
var
timeoutID
=
setTimeout
(
function
()
{
...
...
@@ -43,7 +50,7 @@ clearTimeout(timeoutID: number): void
| timeoutID | number | 是 | 要取消定时器的ID,
是由setTimeout()返回的。 |
-
示例
```
```
js
export
default
{
clearTimeOut
()
{
var
timeoutID
=
setTimeout
(
function
()
{
...
...
@@ -74,7 +81,7 @@ setInterval(handler[, delay[, ...args]]): number
| number | intervalID重复定时器的ID。 |
-
示例
```
```
js
export
default
{
setInterval
()
{
var
intervalID
=
setInterval
(
function
()
{
...
...
@@ -97,7 +104,7 @@ clearInterval(intervalID: number): void
| intervalID | number | 是 | 要取消的重复定时器的ID,是由
setInterval()
返回的。 |
-
示例
```
```
js
export
default
{
clearInterval
()
{
var
intervalID
=
setInterval
(
function
()
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录