Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
b46d841d
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3223
Star
106
Fork
818
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
95
列表
看板
标记
里程碑
合并请求
71
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
95
Issue
95
列表
看板
标记
里程碑
合并请求
71
合并请求
71
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
b46d841d
编写于
10月 30, 2023
作者:
lizhongyi_
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update uts-plugin.md utsioshookclass.md number.md
上级
69ac9dbc
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
54 deletion
+15
-54
docs/plugin/uts-plugin.md
docs/plugin/uts-plugin.md
+3
-1
docs/uts/buildin-object-api/number.md
docs/uts/buildin-object-api/number.md
+10
-52
docs/uts/utsioshookproxy.md
docs/uts/utsioshookproxy.md
+2
-1
未找到文件。
docs/plugin/uts-plugin.md
浏览文件 @
b46d841d
...
...
@@ -636,7 +636,9 @@ export default function getBatteryLevel():number {
> 此功能在 HBuilderX 3.96+ 版本支持,HBuilderX 3.96 之前的版本不支持。
#### iOS 平台
在插件开发过程中,有时我们需要监听 APP 的生命周期函数来完成一些业务逻辑,比如在应用启动时初始化三方 SDK, 在收到推送消息时做消息的处理,在被 url scheme 唤醒时调用指定功能等等。
在插件开发过程中,有时我们需要监听 APP 的生命周期函数来完成一些业务逻辑,比如在应用启动时初始化三方 SDK, 在收到推送消息时做消息的处理,在被 url scheme 唤醒时调用指定功能等等。
在 iOS 平台可以通过自定义 class 遵循
`UTSiOSHookProxy`
协议的方式来实现对应用程序生命周期函数的监听。
...
...
docs/uts/buildin-object-api/number.md
浏览文件 @
b46d841d
...
...
@@ -3,57 +3,6 @@
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 -->
## 实例方法
...
...
@@ -271,6 +220,7 @@ console.log(a.toLong());
<!-- UTSJSON.Number.toUInt8.compatibility -->
## 静态方法
### from()
...
...
@@ -280,4 +230,12 @@ console.log(a.toLong());
<!-- UTSJSON.Number.from.returnValue -->
<!-- UTSJSON.Number.from.compatibility -->
\ No newline at end of file
<!-- UTSJSON.Number.from.compatibility -->
```
ts
let
a
:
Int
=
12
let
b
=
Number
.
from
(
a
)
console
.
log
(
b
);
// expected output: 12
```
\ No newline at end of file
docs/uts/utsioshookproxy.md
浏览文件 @
b46d841d
# UTSiOSHookProxy
应用程序生命周期回调协议,此协议内的所有函数均由 app 调用,开发者可按需实现对应时机的回调函数。具体的使用方法
[
详见
](
https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#hooksclass
)
##
实例方法
##
应用程序生命周期回调函数
### onCreate()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录