Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
4e6fa02e
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3182
Star
105
Fork
807
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
93
列表
看板
标记
里程碑
合并请求
69
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
93
Issue
93
列表
看板
标记
里程碑
合并请求
69
合并请求
69
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
4e6fa02e
编写于
9月 15, 2023
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: uts build in object
上级
ee7c6696
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
1672 addition
and
9 deletion
+1672
-9
docs/.vuepress/utils/utsJson.json
docs/.vuepress/utils/utsJson.json
+1482
-1
docs/uts/buildin-object-api/date.md
docs/uts/buildin-object-api/date.md
+6
-6
docs/uts/buildin-object-api/global.md
docs/uts/buildin-object-api/global.md
+61
-1
docs/uts/buildin-object-api/number.md
docs/uts/buildin-object-api/number.md
+52
-0
docs/uts/buildin-object-api/string.md
docs/uts/buildin-object-api/string.md
+71
-1
未找到文件。
docs/.vuepress/utils/utsJson.json
浏览文件 @
4e6fa02e
因为 它太大了无法显示 source diff 。你可以改为
查看blob
。
docs/uts/buildin-object-api/date.md
浏览文件 @
4e6fa02e
...
...
@@ -15,15 +15,14 @@ new Date(year, monthIndex [, day [, hours [, minutes [, seconds [, milliseconds]
-
uts 的时间由世界标准时间(UTC)1970 年 1 月 1 日开始,用毫秒计时,一天由 86,400,000 毫秒组成。Date 对象的范围是 -100,000,000 天至 100,000,000 天(等效的毫秒值)。
## 静态方法
### now
表示自 UNIX 纪元开始(1970 年 1 月 1 日 00:00:00 (UTC))到当前时间的毫秒数。
### now()
**平台差异说明**
<!-- UTSJSON.Date.now.description -->
|JavaScript|Kotlin|Swift|
|:-:|:-:|:-:|
|√|√|√
`(3.6.11+)`
|
<!-- UTSJSON.Date.now.param -->
<!-- UTSJSON.Date.now.returnValue -->
```
ts
// this example takes 2 seconds to run
...
...
@@ -36,6 +35,7 @@ setTimeout(() => {
// expected output: seconds elapsed = 2
},
2000
)
```
<!-- UTSJSON.Date.now.compatibility -->
## 实例方法
...
...
docs/uts/buildin-object-api/global.md
浏览文件 @
4e6fa02e
...
...
@@ -29,4 +29,64 @@
<!-- UTSJSON.Global.parseFloat.compatibility -->
-
注意: 该方法仅支持对 string 类型的解析,传入其他类型会编译报错。
\ No newline at end of file
-
注意: 该方法仅支持对 string 类型的解析,传入其他类型会编译报错。
### isNaN(number)
<!-- UTSJSON.Global.isNaN.description -->
<!-- UTSJSON.Global.isNaN.param -->
<!-- UTSJSON.Global.isNaN.returnValue -->
<!-- UTSJSON.Global.isNaN.compatibility -->
### isFinite(number)
<!-- UTSJSON.Global.isFinite.description -->
<!-- UTSJSON.Global.isFinite.param -->
<!-- UTSJSON.Global.isFinite.returnValue -->
<!-- UTSJSON.Global.isFinite.compatibility -->
### decodeURI(encodedURI)
<!-- UTSJSON.Global.decodeURI.description -->
<!-- UTSJSON.Global.decodeURI.param -->
<!-- UTSJSON.Global.decodeURI.returnValue -->
<!-- UTSJSON.Global.decodeURI.compatibility -->
### decodeURIComponent(encodedURIComponent)
<!-- UTSJSON.Global.decodeURIComponent.description -->
<!-- UTSJSON.Global.decodeURIComponent.param -->
<!-- UTSJSON.Global.decodeURIComponent.returnValue -->
<!-- UTSJSON.Global.decodeURIComponent.compatibility -->
### encodeURI(uri)
<!-- UTSJSON.Global.encodeURI.description -->
<!-- UTSJSON.Global.encodeURI.param -->
<!-- UTSJSON.Global.encodeURI.returnValue -->
<!-- UTSJSON.Global.encodeURI.compatibility -->
### encodeURIComponent(uriComponent)
<!-- UTSJSON.Global.encodeURIComponent.description -->
<!-- UTSJSON.Global.encodeURIComponent.param -->
<!-- UTSJSON.Global.encodeURIComponent.returnValue -->
<!-- UTSJSON.Global.encodeURIComponent.compatibility -->
\ No newline at end of file
docs/uts/buildin-object-api/number.md
浏览文件 @
4e6fa02e
...
...
@@ -3,6 +3,58 @@
Number 对象是经过封装的能让你处理数字值的对象。
## 实例属性
### MAX_VALUE
<!-- UTSJSON.Number.MAX_VALUE.description -->
<!-- UTSJSON.Number.MAX_VALUE.param -->
<!-- UTSJSON.Number.MAX_VALUE.returnValue -->
<!-- UTSJSON.Number.MAX_VALUE.compatibility -->
### MIN_VALUE
<!-- UTSJSON.Number.MIN_VALUE.description -->
<!-- UTSJSON.Number.MIN_VALUE.param -->
<!-- UTSJSON.Number.MIN_VALUE.returnValue -->
<!-- UTSJSON.Number.MIN_VALUE.compatibility -->
### NaN
<!-- UTSJSON.Number.NaN.description -->
<!-- UTSJSON.Number.NaN.param -->
<!-- UTSJSON.Number.NaN.returnValue -->
<!-- UTSJSON.Number.NaN.compatibility -->
### NEGATIVE_INFINITY
<!-- UTSJSON.Number.NEGATIVE_INFINITY.description -->
<!-- UTSJSON.Number.NEGATIVE_INFINITY.param -->
<!-- UTSJSON.Number.NEGATIVE_INFINITY.returnValue -->
<!-- UTSJSON.Number.NEGATIVE_INFINITY.compatibility -->
### POSITIVE_INFINITY
<!-- UTSJSON.Number.POSITIVE_INFINITY.description -->
<!-- UTSJSON.Number.POSITIVE_INFINITY.param -->
<!-- UTSJSON.Number.POSITIVE_INFINITY.returnValue -->
<!-- UTSJSON.Number.POSITIVE_INFINITY.compatibility -->
## 实例方法
...
...
docs/uts/buildin-object-api/string.md
浏览文件 @
4e6fa02e
...
...
@@ -404,4 +404,74 @@ console.log(sentence.toUpperCase());
<!-- UTSJSON.String.trim.returnValue -->
<!-- UTSJSON.String.trim.compatibility -->
\ No newline at end of file
<!-- UTSJSON.String.trim.compatibility -->
### padStart(targetLength, padString?)
<!-- UTSJSON.String.padStart.description -->
<!-- UTSJSON.String.padStart.param -->
<!-- UTSJSON.String.padStart.returnValue -->
<!-- UTSJSON.String.padStart.compatibility -->
### padEnd(targetLength, padString?)
<!-- UTSJSON.String.padEnd.description -->
<!-- UTSJSON.String.padEnd.param -->
<!-- UTSJSON.String.padEnd.returnValue -->
<!-- UTSJSON.String.padEnd.compatibility -->
### includes(searchString, position?)
<!-- UTSJSON.String.includes.description -->
<!-- UTSJSON.String.includes.param -->
<!-- UTSJSON.String.includes.returnValue -->
<!-- UTSJSON.String.includes.compatibility -->
### endsWith(searchString, endPosition?)
<!-- UTSJSON.String.endsWith.description -->
<!-- UTSJSON.String.endsWith.param -->
<!-- UTSJSON.String.endsWith.returnValue -->
<!-- UTSJSON.String.endsWith.compatibility -->
### repeat(count)
<!-- UTSJSON.String.repeat.description -->
<!-- UTSJSON.String.repeat.param -->
<!-- UTSJSON.String.repeat.returnValue -->
<!-- UTSJSON.String.repeat.compatibility -->
### startsWith(searchString, position?)
<!-- UTSJSON.String.startsWith.description -->
<!-- UTSJSON.String.startsWith.param -->
<!-- UTSJSON.String.startsWith.returnValue -->
<!-- UTSJSON.String.startsWith.compatibility -->
### at(index)
<!-- UTSJSON.String.at.description -->
<!-- UTSJSON.String.at.param -->
<!-- UTSJSON.String.at.returnValue -->
<!-- UTSJSON.String.at.compatibility -->
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录