From d868c7bd9ac0a8c636932fbe6cef91745ddc7cc8 Mon Sep 17 00:00:00 2001 From: qiang Date: Tue, 31 Aug 2021 12:10:40 +0800 Subject: [PATCH] docs: update log.md, timer.md --- docs/collocation/frame/log.md | 2 +- docs/collocation/frame/timer.md | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/collocation/frame/log.md b/docs/collocation/frame/log.md index 80b65384c..645be1efb 100644 --- a/docs/collocation/frame/log.md +++ b/docs/collocation/frame/log.md @@ -17,4 +17,4 @@ - 不同平台对于 console 方法的支持存在差异,建议在开发过程中只使用文档中提到的方法。 - HBuilderX中有2个重要的代码块,敲`clog`:可直接输出`console.log()`;敲`clogv`:可输出`console.log(": " + );`,并且出现双光标,方便把变量名称和值同时打印出来。 -- HBuilderX 1.9.7 以上的自定义组件模式,支持打印对象信息到控制台。老版本可使用`clogj`代码块将json对象转为字符串打印出来。 \ No newline at end of file +- HBuilderX 1.9.7 以上的自定义组件模式,在App端支持打印对象信息到控制台。老版本可使用`clogj`代码块将json对象转为字符串打印出来。 diff --git a/docs/collocation/frame/timer.md b/docs/collocation/frame/timer.md index 4c491438f..e9d124984 100644 --- a/docs/collocation/frame/timer.md +++ b/docs/collocation/frame/timer.md @@ -55,4 +55,7 @@ |参数|类型|必填|说明| |:-|:-|:-|:-| -|intervalID|Number|是|要取消的定时器的 ID| \ No newline at end of file +|intervalID|Number|是|要取消的定时器的 ID| + +## 注意事项 +* App 端返回的定时器编号可能为 String 类型,使用时无需主动转换为 Number 类型 \ No newline at end of file -- GitLab