Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
f1e74d1e
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
347
Star
2
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello-uvue
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f1e74d1e
编写于
4月 21, 2024
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor(reactivity): toRaw
上级
bc45ee50
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
51 addition
and
27 deletion
+51
-27
pages/index/index.uvue
pages/index/index.uvue
+5
-0
pages/reactivity/advanced/to-raw/to-raw.test.js
pages/reactivity/advanced/to-raw/to-raw.test.js
+8
-6
pages/reactivity/advanced/to-raw/to-raw.uvue
pages/reactivity/advanced/to-raw/to-raw.uvue
+37
-20
refactor_options-API-composition-API-correspondence.md
refactor_options-API-composition-API-correspondence.md
+1
-1
未找到文件。
pages/index/index.uvue
浏览文件 @
f1e74d1e
...
...
@@ -617,6 +617,11 @@ export default {
name: 'shallowRef',
url: 'shallow-ref/shallow-ref'
},
{
id: 'to-raw',
name: 'toRaw',
url: 'to-raw/to-raw'
},
]
}
] as Page[]
...
...
pages/reactivity/advanced/to-raw/to-raw.test.js
浏览文件 @
f1e74d1e
const
PAGE_PATH
=
'
/pages/
composition-api/reactivity
/to-raw/to-raw
'
const
PAGE_PATH
=
'
/pages/
reactivity/advanced
/to-raw/to-raw
'
describe
(
'
toRaw
'
,
()
=>
{
let
page
=
null
beforeAll
(
async
()
=>
{
page
=
await
program
.
reLaunch
(
PAGE_PATH
)
await
page
.
waitFor
(
'
view
'
)
})
it
(
'
basic
'
,
async
()
=>
{
const
checkToRawRef
=
await
page
.
$
(
'
#check-to-raw-ref
'
)
expect
(
await
checkToRawRef
.
text
()).
toBe
(
'
check toRaw ref:
false
'
)
expect
(
await
checkToRawRef
.
text
()).
toBe
(
'
false
'
)
const
checkToRawReactive
=
await
page
.
$
(
'
#check-to-raw-reactive
'
)
expect
(
await
checkToRawReactive
.
text
()).
toBe
(
'
check toRaw reactive:
true
'
)
expect
(
await
checkToRawReactive
.
text
()).
toBe
(
'
true
'
)
const
checkToRawReadonly
=
await
page
.
$
(
'
#check-to-raw-readonly
'
)
expect
(
await
checkToRawReadonly
.
text
()).
toBe
(
'
check toRaw readonly:
true
'
)
expect
(
await
checkToRawReadonly
.
text
()).
toBe
(
'
true
'
)
const
checkToRawShallowReactive
=
await
page
.
$
(
'
#check-to-raw-shallow-reactive
'
)
expect
(
await
checkToRawShallowReactive
.
text
()).
toBe
(
'
check toRaw shallowReactive:
true
'
)
expect
(
await
checkToRawShallowReactive
.
text
()).
toBe
(
'
true
'
)
const
checkToRawShallowReadonly
=
await
page
.
$
(
'
#check-to-raw-shallow-readonly
'
)
expect
(
await
checkToRawShallowReadonly
.
text
()).
toBe
(
'
check toRaw shallowReadonly:
true
'
)
expect
(
await
checkToRawShallowReadonly
.
text
()).
toBe
(
'
true
'
)
})
})
\ No newline at end of file
pages/reactivity/advanced/to-raw/to-raw.uvue
浏览文件 @
f1e74d1e
<template>
<view class="page">
<text id="check-to-raw-ref">check toRaw ref: {{ checkToRawRef }}</text>
<text class="mt-10" id="check-to-raw-reactive">check toRaw reactive: {{ checkToRawReactive }}</text>
<text class="mt-10" id="check-to-raw-readonly">check toRaw readonly: {{ checkToRawReadonly }}</text>
<text class="mt-10" id="check-to-raw-shallow-reactive">check toRaw shallowReactive:
{{ checkToRawShallowReactive }}</text>
<text class="mt-10" id="check-to-raw-shallow-readonly">check toRaw shallowReadonly:
{{ checkToRawShallowReadonly }}</text>
<view class="flex justify-between flex-row mb-10">
<text>check toRaw ref:</text>
<text id="check-to-raw-ref">{{ checkToRawRef }}</text>
</view>
<view class="flex justify-between flex-row mb-10">
<text>check toRaw reactive:</text>
<text id="check-to-raw-reactive">{{ checkToRawReactive }}</text>
</view>
<view class="flex justify-between flex-row mb-10">
<text>check toRaw readonly:</text>
<text id="check-to-raw-readonly">{{ checkToRawReadonly }}</text>
</view>
<view class="flex justify-between flex-row mb-10">
<text>check toRaw shallowReactive:</text>
<text id="check-to-raw-shallow-reactive">{{
checkToRawShallowReactive
}}</text>
</view>
<view class="flex justify-between flex-row mb-10">
<text>check toRaw shallowReadonly:</text>
<text id="check-to-raw-shallow-readonly">{{
checkToRawShallowReadonly
}}</text>
</view>
</view>
</template>
<script setup>
const obj = {}
<script setup
lang="uts"
>
const obj = {}
const refObj = ref(obj);
const checkToRawRef = toRaw<UTSJSONObject>(refObj) === obj;
const refObj = ref(obj);
const checkToRawRef = toRaw<UTSJSONObject>(refObj) === obj;
const reactiveObj = reactive(obj);
const checkToRawReactive = toRaw<UTSJSONObject>(reactiveObj) === obj;
const reactiveObj = reactive(obj);
const checkToRawReactive = toRaw<UTSJSONObject>(reactiveObj) === obj;
const readonlyObj = readonly(obj);
const checkToRawReadonly = toRaw<UTSJSONObject>(readonlyObj) === obj;
const readonlyObj = readonly(obj);
const checkToRawReadonly = toRaw<UTSJSONObject>(readonlyObj) === obj;
const shallowReactiveObj = shallowReactive(obj);
const checkToRawShallowReactive = toRaw<UTSJSONObject>(shallowReactiveObj) === obj;
const shallowReactiveObj = shallowReactive(obj);
const checkToRawShallowReactive = toRaw<UTSJSONObject>(shallowReactiveObj) === obj;
const shallowReadonlyObj = shallowReadonly(obj);
const checkToRawShallowReadonly = toRaw<UTSJSONObject>(shallowReadonlyObj) === obj;
</script>
\ No newline at end of file
const shallowReadonlyObj = shallowReadonly(obj);
const checkToRawShallowReadonly = toRaw<UTSJSONObject>(shallowReadonlyObj) === obj;
</script>
refactor_options-API-composition-API-correspondence.md
浏览文件 @
f1e74d1e
...
...
@@ -148,7 +148,7 @@ function transform(fileInfo, api) {
-
[x] shallowReactive
-
[x] shallowReadonly
-
[x] shallowRef
-
[
] toRaw
-
[
x
] toRaw
-
[ ] triggerRef
## directives
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录