Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-uni-app-x-zh
提交
f5cdf0b5
U
unidocs-uni-app-x-zh
项目概览
DCloud
/
unidocs-uni-app-x-zh
通知
144
Star
2
Fork
33
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
9
列表
看板
标记
里程碑
合并请求
11
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
unidocs-uni-app-x-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
9
Issue
9
列表
看板
标记
里程碑
合并请求
11
合并请求
11
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f5cdf0b5
编写于
1月 30, 2024
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: rest param
上级
047e46bc
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
176 addition
and
15 deletion
+176
-15
docs/uts/buildin-object-api/array.md
docs/uts/buildin-object-api/array.md
+5
-5
docs/uts/buildin-object-api/console.md
docs/uts/buildin-object-api/console.md
+156
-5
docs/uts/buildin-object-api/math.md
docs/uts/buildin-object-api/math.md
+12
-2
docs/uts/buildin-object-api/string.md
docs/uts/buildin-object-api/string.md
+1
-1
docs/uts/buildin-object-api/timers.md
docs/uts/buildin-object-api/timers.md
+2
-2
未找到文件。
docs/uts/buildin-object-api/array.md
浏览文件 @
f5cdf0b5
...
...
@@ -144,7 +144,7 @@ console.log(plants);
<!-- UTSJSON.Array.pop.compatibility -->
### push(items)
### push(
...
items)
<!-- UTSJSON.Array.push.description -->
...
...
@@ -169,7 +169,7 @@ console.log(animals);
<!-- UTSJSON.Array.push.compatibility -->
### concat(items)
### concat(
...
items)
<!-- UTSJSON.Array.concat.description -->
...
...
@@ -187,7 +187,7 @@ console.log(array3);
<!-- UTSJSON.Array.concat.compatibility -->
### concat(items)
### concat(
...
items)
<!-- UTSJSON.Array.concat_1.description -->
...
...
@@ -302,7 +302,7 @@ array2.sort((a: number, b: number):number => a - b);
<!-- UTSJSON.Array.sort.compatibility -->
### splice(start, deleteCount, items)
### splice(start, deleteCount,
...
items)
<!-- UTSJSON.Array.splice.description -->
...
...
@@ -325,7 +325,7 @@ console.log(months);
<!-- UTSJSON.Array.splice.compatibility -->
### unshift(items)
### unshift(
...
items)
<!-- UTSJSON.Array.unshift.description -->
...
...
docs/uts/buildin-object-api/console.md
浏览文件 @
f5cdf0b5
...
...
@@ -4,7 +4,7 @@
## 静态方法
### debug(data)
### debug(
...
data)
<!-- UTSJSON.Console.debug.description -->
...
...
@@ -14,7 +14,7 @@
<!-- UTSJSON.Console.debug.compatibility -->
### error(data)
### error(
...
data)
<!-- UTSJSON.Console.error.description -->
...
...
@@ -24,7 +24,7 @@
<!-- UTSJSON.Console.error.compatibility -->
### info(data)
### info(
...
data)
<!-- UTSJSON.Console.info.description -->
...
...
@@ -34,7 +34,7 @@
<!-- UTSJSON.Console.info.compatibility -->
### log(data)
### log(
...
data)
<!-- UTSJSON.Console.log.description -->
...
...
@@ -44,7 +44,7 @@
<!-- UTSJSON.Console.log.compatibility -->
### warn(data)
### warn(
...
data)
<!-- UTSJSON.Console.warn.description -->
...
...
@@ -54,4 +54,155 @@
<!-- UTSJSON.Console.warn.compatibility -->
### assert(condition?, ...data)
<!-- UTSJSON.Console.assert.description -->
<!-- UTSJSON.Console.assert.param -->
<!-- UTSJSON.Console.assert.returnValue -->
<!-- UTSJSON.Console.assert.compatibility -->
### clear()
<!-- UTSJSON.Console.clear.description -->
<!-- UTSJSON.Console.clear.param -->
<!-- UTSJSON.Console.clear.returnValue -->
<!-- UTSJSON.Console.clear.compatibility -->
### count(label?)
<!-- UTSJSON.Console.count.description -->
<!-- UTSJSON.Console.count.param -->
<!-- UTSJSON.Console.count.returnValue -->
<!-- UTSJSON.Console.count.compatibility -->
### countReset(label?)
<!-- UTSJSON.Console.countReset.description -->
<!-- UTSJSON.Console.countReset.param -->
<!-- UTSJSON.Console.countReset.returnValue -->
<!-- UTSJSON.Console.countReset.compatibility -->
### dir(item?, options?)
<!-- UTSJSON.Console.dir.description -->
<!-- UTSJSON.Console.dir.param -->
<!-- UTSJSON.Console.dir.returnValue -->
<!-- UTSJSON.Console.dir.compatibility -->
### dirxml(...data)
<!-- UTSJSON.Console.dirxml.description -->
<!-- UTSJSON.Console.dirxml.param -->
<!-- UTSJSON.Console.dirxml.returnValue -->
<!-- UTSJSON.Console.dirxml.compatibility -->
### group(...data)
<!-- UTSJSON.Console.group.description -->
<!-- UTSJSON.Console.group.param -->
<!-- UTSJSON.Console.group.returnValue -->
<!-- UTSJSON.Console.group.compatibility -->
### groupCollapsed(...data)
<!-- UTSJSON.Console.groupCollapsed.description -->
<!-- UTSJSON.Console.groupCollapsed.param -->
<!-- UTSJSON.Console.groupCollapsed.returnValue -->
<!-- UTSJSON.Console.groupCollapsed.compatibility -->
### groupEnd()
<!-- UTSJSON.Console.groupEnd.description -->
<!-- UTSJSON.Console.groupEnd.param -->
<!-- UTSJSON.Console.groupEnd.returnValue -->
<!-- UTSJSON.Console.groupEnd.compatibility -->
### table(tabularData?, properties?)
<!-- UTSJSON.Console.table.description -->
<!-- UTSJSON.Console.table.param -->
<!-- UTSJSON.Console.table.returnValue -->
<!-- UTSJSON.Console.table.compatibility -->
### time(label?)
<!-- UTSJSON.Console.time.description -->
<!-- UTSJSON.Console.time.param -->
<!-- UTSJSON.Console.time.returnValue -->
<!-- UTSJSON.Console.time.compatibility -->
### timeEnd(label?)
<!-- UTSJSON.Console.timeEnd.description -->
<!-- UTSJSON.Console.timeEnd.param -->
<!-- UTSJSON.Console.timeEnd.returnValue -->
<!-- UTSJSON.Console.timeEnd.compatibility -->
### timeLog(label?, ...data)
<!-- UTSJSON.Console.timeLog.description -->
<!-- UTSJSON.Console.timeLog.param -->
<!-- UTSJSON.Console.timeLog.returnValue -->
<!-- UTSJSON.Console.timeLog.compatibility -->
### timeStamp(label?)
<!-- UTSJSON.Console.timeStamp.description -->
<!-- UTSJSON.Console.timeStamp.param -->
<!-- UTSJSON.Console.timeStamp.returnValue -->
<!-- UTSJSON.Console.timeStamp.compatibility -->
### trace(...data)
<!-- UTSJSON.Console.trace.description -->
<!-- UTSJSON.Console.trace.param -->
<!-- UTSJSON.Console.trace.returnValue -->
<!-- UTSJSON.Console.trace.compatibility -->
<!-- UTSJSON.Console.tutorial -->
docs/uts/buildin-object-api/math.md
浏览文件 @
f5cdf0b5
...
...
@@ -626,7 +626,7 @@ console.log(Math.log(10));
```
<!-- UTSJSON.Math.log.compatibility -->
### max(values)
### max(
...
values)
<!-- UTSJSON.Math.max.description -->
...
...
@@ -642,7 +642,7 @@ console.log(Math.max(-1, -3, -2));
```
<!-- UTSJSON.Math.max.compatibility -->
### min(values)
### min(
...
values)
<!-- UTSJSON.Math.min.description -->
...
...
@@ -777,3 +777,13 @@ console.log(Math.tan(1));
<!-- UTSJSON.Math.tan.compatibility -->
<!-- UTSJSON.Math.tutorial -->
### hypot(...values)
<!-- UTSJSON.Math.hypot.description -->
<!-- UTSJSON.Math.hypot.param -->
<!-- UTSJSON.Math.hypot.returnValue -->
<!-- UTSJSON.Math.hypot.compatibility -->
docs/uts/buildin-object-api/string.md
浏览文件 @
f5cdf0b5
...
...
@@ -197,7 +197,7 @@ console.log(String.fromCharCode(189, 165999, 190, 61));
<!-- UTSJSON.String.fromCharCode.compatibility -->
### concat(strings)
### concat(
...
strings)
<!-- UTSJSON.String.concat.description -->
...
...
docs/uts/buildin-object-api/timers.md
浏览文件 @
f5cdf0b5
...
...
@@ -2,7 +2,7 @@
## 实例方法
### setInterval(handler, timeout?, arguments)
### setInterval(handler, timeout?,
...
arguments)
<!-- UTSJSON.Timers.setInterval.description -->
...
...
@@ -14,7 +14,7 @@
<!-- UTSJSON.Timers.setInterval.tutorial -->
### setTimeout(handler, timeout?, arguments)
### setTimeout(handler, timeout?,
...
arguments)
<!-- UTSJSON.Timers.setTimeout.description -->
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录