Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
b108fb5a
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3614
Star
108
Fork
927
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
118
列表
看板
标记
里程碑
合并请求
110
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
118
Issue
118
列表
看板
标记
里程碑
合并请求
110
合并请求
110
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
b108fb5a
编写于
9月 05, 2023
作者:
DCloud-yyl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update drawablecontext.md
上级
4c6c1dba
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
0 addition
and
94 deletion
+0
-94
docs/uni-app-x/dom/drawablecontext.md
docs/uni-app-x/dom/drawablecontext.md
+0
-94
未找到文件。
docs/uni-app-x/dom/drawablecontext.md
浏览文件 @
b108fb5a
## DrawableContext
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
()
}
}
}
```
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录