Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
5e0e5964
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3172
Star
105
Fork
804
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
93
列表
看板
标记
里程碑
合并请求
67
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
93
Issue
93
列表
看板
标记
里程碑
合并请求
67
合并请求
67
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
5e0e5964
编写于
11月 01, 2023
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update uts-component.md
上级
855a133c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
19 addition
and
3 deletion
+19
-3
docs/plugin/uts-component.md
docs/plugin/uts-component.md
+19
-3
未找到文件。
docs/plugin/uts-component.md
浏览文件 @
5e0e5964
...
...
@@ -235,8 +235,8 @@ UTS组件的优势在于,它秉承了UTS的跨平台特性,统一的UTS语
*/
NVLoad
():
LinearLayout
{
//必须实现
let
contentLayout
=
new
LinearLayout
(
this
.
$androidContext
)
let
button
=
new
Button
(
this
.
$androidContext
)
let
contentLayout
=
new
LinearLayout
(
this
.
$androidContext
!
)
let
button
=
new
Button
(
this
.
$androidContext
!
)
button
.
setText
(
"
点击触发
"
);
button
.
setTag
(
"
centerButton
"
);
contentLayout
.
addView
(
button
,
new
LinearLayout
.
LayoutParams
(
500
,
500
));
...
...
@@ -510,7 +510,6 @@ graph TD;
|unmounted |组件在内存被销毁 |资源回收逻辑 |可选|
除上述生命周期外,还存在下列可选周期函数:
+
NVMeasure
...
...
@@ -522,6 +521,23 @@ NVMeasure 用于告诉排版系统,组件自身需要的宽高,具体的调
但是部分场景下,组件开发者需要自己维护宽高,则需要开发者重写此函数
+
NVUpdateStyles
需要HBuilder X 3.96版本
NVUpdateStyles 用来监听组件的外部style 变化,通常用来写响应外部的css样式变化从而动态更新组件内部状态场景
我们可以在组件内部这样实现:
```
uts
NVUpdateStyles(styles: Map<String, any>){
console.log("NVUpdateStyles",styles)
}
```
**注意:只有非容器组件生效,容器组件不应该重写此函数**
[
vue3 生命周期暂不支持
](
https://uniapp.dcloud.net.cn/tutorial/vue3-api.html#%E9%80%89%E9%A1%B9-%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F%E9%92%A9%E5%AD%90
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录