Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
96fcff23
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
350
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看板
提交
96fcff23
编写于
4月 25, 2024
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor(directive): v-for add map and set
上级
c4b89419
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
57 addition
and
1 deletion
+57
-1
pages/directive/v-for/v-for-composition.uvue
pages/directive/v-for/v-for-composition.uvue
+24
-1
pages/directive/v-for/v-for-options.uvue
pages/directive/v-for/v-for-options.uvue
+19
-0
pages/directive/v-for/v-for.test.js
pages/directive/v-for/v-for.test.js
+14
-0
未找到文件。
pages/directive/v-for/v-for-composition.uvue
浏览文件 @
96fcff23
...
...
@@ -18,7 +18,10 @@
</view>
<view class="bold mb-10">v-for & v-if list items</view>
<view id="v-for-v-if-list-items" v-for="item in listItems" :key="item.name">
<view
id="v-for-v-if-list-items"
v-for="item in listItems"
:key="item.name">
<template v-if="item.show">
<view class="mb-10 flex justify-between flex-row">
<text :id="item.name">{{ item.name }}</text>
...
...
@@ -63,6 +66,18 @@
}}</text>
</view>
</view>
<view
class="mb-10 flex justify-between flex-row"
v-for="item in mapList"
:key="item[0]">
<text>{{ item[0] }}</text>
<text :id="item[0]">{{ item[1] }}</text>
</view>
<view class="mb-10" v-for="(item, index) in setList" :key="index">
<text :id="`set-value-${index + 1}`">{{ item }}</text>
</view>
</view>
<!-- #ifdef APP -->
</scroll-view>
...
...
@@ -111,4 +126,12 @@ const listItems = ref([
]
},
] as ListItem[])
const mapList = new Map<string, string>([
['map-key-1', 'map value 1'],
['map-key-2', 'map value 2'],
['map-key-3', 'map value 3'],
])
const setList = new Set<string>(['set value 1', 'set value 2', 'set value 3'])
</script>
pages/directive/v-for/v-for-options.uvue
浏览文件 @
96fcff23
...
...
@@ -66,6 +66,18 @@
}}</text>
</view>
</view>
<view
class="mb-10 flex justify-between flex-row"
v-for="item in mapList"
:key="item[0]">
<text>{{ item[0] }}</text>
<text :id="item[0]">{{ item[1] }}</text>
</view>
<view class="mb-10" v-for="(item, index) in setList" :key="index">
<text :id="`set-value-${index + 1}`">{{ item }}</text>
</view>
</view>
<!-- #ifdef APP -->
</scroll-view>
...
...
@@ -86,6 +98,7 @@ type ListItem = {
items?: ListItem[]
}
// TODO: v-for map set deep array 动态增加删除
export default {
data() {
return {
...
...
@@ -116,6 +129,12 @@ export default {
]
},
] as ListItem[],
mapList: new Map<string, string>([
['map-key-1', 'map value 1'],
['map-key-2', 'map value 2'],
['map-key-3', 'map value 3'],
]),
setList: new Set<string>(['set value 1', 'set value 2', 'set value 3']),
}
}
}
...
...
pages/directive/v-for/v-for.test.js
浏览文件 @
96fcff23
...
...
@@ -33,6 +33,20 @@ describe('v-for', () => {
await
vShow1Count
.
tap
()
expect
(
await
vShow1Count
.
text
()).
toBe
(
'
2
'
)
const
mapValue1
=
await
page
.
$
(
'
#map-key-1
'
)
expect
(
await
mapValue1
.
text
()).
toBe
(
'
map value 1
'
)
const
mapValue2
=
await
page
.
$
(
'
#map-key-2
'
)
expect
(
await
mapValue2
.
text
()).
toBe
(
'
map value 2
'
)
const
mapValue3
=
await
page
.
$
(
'
#map-key-3
'
)
expect
(
await
mapValue3
.
text
()).
toBe
(
'
map value 3
'
)
const
setValue1
=
await
page
.
$
(
'
#set-value-1
'
)
expect
(
await
setValue1
.
text
()).
toBe
(
'
set value 1
'
)
const
setValue2
=
await
page
.
$
(
'
#set-value-2
'
)
expect
(
await
setValue2
.
text
()).
toBe
(
'
set value 2
'
)
const
setValue3
=
await
page
.
$
(
'
#set-value-3
'
)
expect
(
await
setValue3
.
text
()).
toBe
(
'
set value 3
'
)
await
page
.
waitFor
(
500
)
const
image
=
await
program
.
screenshot
({
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录