Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
4c6c1dba
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3200
Star
106
Fork
813
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
94
列表
看板
标记
里程碑
合并请求
70
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
94
Issue
94
列表
看板
标记
里程碑
合并请求
70
合并请求
70
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
4c6c1dba
编写于
9月 05, 2023
作者:
DCloud-yyl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update README.md
上级
cc0979de
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
95 addition
and
0 deletion
+95
-0
docs/uni-app-x/dom/README.md
docs/uni-app-x/dom/README.md
+95
-0
未找到文件。
docs/uni-app-x/dom/README.md
浏览文件 @
4c6c1dba
...
...
@@ -110,3 +110,98 @@ this.myNode?.style?.setProperty('background-color', 'red');
以上例子仅为演示DOM API的使用,实际上点击按钮修改背景色这种简单场景,使用数据绑定更简单,class绑定到一个data上,动态修改data即可。
## 通过DrawableContext绘制View
uni-app x 在 app 端提供 DrawableContext 绘制内容到 uvue 页面的
`view`
标签上。可用于绘制文本、形状等内容。
### 获取 DrawableContext 对象
DrawableContext 对象通过对象节点(INode)的
`getDrawableContext()`
方法获取
```
vue
<
template
>
<view
ref=
"drawable"
style=
"width: 750rpx;height: 750rpx;"
>
</view>
</
template
>
<
script
>
export
default
{
onReady
()
{
var
ctx
=
(
this
.
$refs
[
'
drawable
'
]
as
INode
).
getDrawableContext
()
}
}
</
script
>
```
### 绘制内容
通过 DrawableContext 提供的 API 绘制文本、形状等内容
```
ts
<
script
>
export
default
{
onReady
()
{
var
ctx
=
(
this
.
$refs
[
'
drawable
'
]
as
INode
).
getDrawableContext
()
ctx
.
moveTo
(
50
,
40
);
ctx
.
lineTo
(
200
,
40
);
ctx
.
stroke
();
}
}
<
/script>
```
### 更新到画布
DrawableContext 在调用 API 之后不会主动更新到画布上,需要主动调用
`update()`
方法更新。
```
ts
<
script
>
export
default
{
onReady
()
{
var
ctx
=
(
this
.
$refs
[
'
drawable
'
]
as
INode
).
getDrawableContext
()
ctx
.
moveTo
(
50
,
40
);
ctx
.
lineTo
(
200
,
40
);
ctx
.
stroke
();
ctx
.
update
()
}
}
<
/script>
```
### 清除画布内容
如果清除已经绘制的内容重新绘制,需要调用
`reset()`
方法清除内容再进行绘制。
```
vue
<
template
>
<view
ref=
"drawable"
style=
"width: 750rpx;height: 750rpx;"
@
click=
"drawable"
>
</view>
</
template
>
<
script
>
export
default
{
data
(){
return
{
change
:
false
}
},
onReady
()
{
this
.
drawable
()
},
methods
:{
drawable
(){
var
ctx
=
(
this
.
$refs
[
'
drawable
'
]
as
INode
).
getDrawableContext
()
ctx
.
reset
();
if
(
this
.
change
)
{
ctx
.
strokeStyle
=
"
#33ff0000
"
ctx
.
lineWidth
=
10
}
this
.
change
=
!
this
.
change
ctx
.
moveTo
(
50
,
40
);
ctx
.
lineTo
(
200
,
40
);
ctx
.
stroke
();
ctx
.
update
()
}
}
}
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录