From 64becc0d0fd8cea05ef49eaf2d9f058af1eef057 Mon Sep 17 00:00:00 2001 From: zhangjunxi Date: Mon, 28 Nov 2022 06:20:48 +0000 Subject: [PATCH] Add timer description Signed-off-by: zhangjunxi --- zh-cn/application-dev/reference/apis/js-apis-system-timer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-system-timer.md b/zh-cn/application-dev/reference/apis/js-apis-system-timer.md index a34755debe..ddb0a5d148 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-system-timer.md +++ b/zh-cn/application-dev/reference/apis/js-apis-system-timer.md @@ -20,7 +20,7 @@ import systemTimer from '@ohos.systemTimer'; | 名称 | 类型 | 值 | 说明 | | ------------------- | ------ | ---- | ---------------------------- | -| TIMER_TYPE_REALTIME | number | 1 | 系统启动时间定时器。 | +| TIMER_TYPE_REALTIME | number | 1 | 系统启动时间定时器。(定时器启动时间不能晚于当前设置的系统时间) | | TIMER_TYPE_WAKEUP | number | 2 | 唤醒定时器。 | | TIMER_TYPE_EXACT | number | 4 | 精准定时器。 | | TIMER_TYPE_IDLE | number | 8 | IDLE模式定时器(暂不支持)。 | @@ -33,7 +33,7 @@ import systemTimer from '@ohos.systemTimer'; | 名称 | 类型 | 必填 | 说明 | | --------- | --------------------------------- | ---- | ------------------------------------------------------------ | -| type | number | 是 | 定时器类型。
取值为1时,表示为系统启动时间定时器;
取值为2时,表示为唤醒定时器;
取值为4时,表示为精准定时器;
取值为5时,表示为IDLE模式定时器(暂不支持)。 | +| type | number | 是 | 定时器类型。
取值为1时,表示为系统启动时间定时器(定时器启动时间不能晚于当前设置的系统时间) ;
取值为2时,表示为唤醒定时器;
取值为4时,表示为精准定时器;
取值为5时,表示为IDLE模式定时器(暂不支持)。 | | repeat | boolean | 是 | true为循环定时器,false为单次定时器。 | | interval | number | 否 | 如果是循环定时器,repeat值应大于5000毫秒,非重复定时器置为0。 | | wantAgent | [WantAgent](js-apis-wantAgent.md) | 否 | 设置通知的WantAgent,定时器到期后通知。(支持拉起应用MainAbility,暂不支持拉起ServiceAbility。) | -- GitLab