Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
52c485c7
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看板
提交
52c485c7
编写于
5月 11, 2024
作者:
H
hdx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(v-for): 新增 UTSJSONObject
上级
549e944a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
35 addition
and
4 deletion
+35
-4
pages/directive/v-for/v-for-composition.uvue
pages/directive/v-for/v-for-composition.uvue
+12
-1
pages/directive/v-for/v-for-options.uvue
pages/directive/v-for/v-for-options.uvue
+11
-1
pages/directive/v-for/v-for.test.js
pages/directive/v-for/v-for.test.js
+12
-2
未找到文件。
pages/directive/v-for/v-for-composition.uvue
浏览文件 @
52c485c7
...
@@ -77,6 +77,15 @@
...
@@ -77,6 +77,15 @@
<view class="mb-10" v-for="(item, index) in setList" :key="index">
<view class="mb-10" v-for="(item, index) in setList" :key="index">
<text :id="`set-value-${index + 1}`">{{ item }}</text>
<text :id="`set-value-${index + 1}`">{{ item }}</text>
</view>
<view class="bold mb-10">v-for UTSJSONObject</view>
<view
v-for="(value, key) in utsJSONObject"
:key="key"
class="mb-10 flex justify-between flex-row">
<text :id="key">{{ key }}</text>
<text :id="value">{{ value }}</text>
</view>
</view>
</view>
</view>
<!-- #ifdef APP -->
<!-- #ifdef APP -->
...
@@ -133,5 +142,7 @@ const mapList = new Map<string, string>([
...
@@ -133,5 +142,7 @@ const mapList = new Map<string, string>([
['map-key-3', 'map value 3'],
['map-key-3', 'map value 3'],
])
])
const setList = new Set<string>(['set value 1', 'set value 2', 'set value 3'])
const setList = new Set<string>(['set value 1', 'set value 2', 'set value 3'])
const utsJSONObject = reactive({ utsKey1: 'UTSJSONObject-value1', utsKey2: 'UTSJSONObject-value2', utsKey3: 'UTSJSONObject-value3' })
</script>
</script>
pages/directive/v-for/v-for-options.uvue
浏览文件 @
52c485c7
...
@@ -77,6 +77,15 @@
...
@@ -77,6 +77,15 @@
<view class="mb-10" v-for="(item, index) in setList" :key="index">
<view class="mb-10" v-for="(item, index) in setList" :key="index">
<text :id="`set-value-${index + 1}`">{{ item }}</text>
<text :id="`set-value-${index + 1}`">{{ item }}</text>
</view>
<view class="bold mb-10">v-for UTSJSONObject</view>
<view
v-for="(value, key) in utsJSONObject"
:key="key"
class="mb-10 flex justify-between flex-row">
<text :id="key">{{ key }}</text>
<text :id="value">{{ value }}</text>
</view>
</view>
</view>
</view>
<!-- #ifdef APP -->
<!-- #ifdef APP -->
...
@@ -134,7 +143,8 @@ export default {
...
@@ -134,7 +143,8 @@ export default {
['map-key-2', 'map value 2'],
['map-key-2', 'map value 2'],
['map-key-3', 'map value 3'],
['map-key-3', 'map value 3'],
]),
]),
setList: new Set<string>(['set value 1', 'set value 2', 'set value 3']),
setList: new Set<string>(['set value 1', 'set value 2', 'set value 3']),
utsJSONObject: { utsKey1: 'UTSJSONObject-value1', utsKey2: 'UTSJSONObject-value2', utsKey3: 'UTSJSONObject-value3' }
}
}
}
}
}
}
...
...
pages/directive/v-for/v-for.test.js
浏览文件 @
52c485c7
...
@@ -46,9 +46,19 @@ describe('v-for', () => {
...
@@ -46,9 +46,19 @@ describe('v-for', () => {
expect
(
await
setValue2
.
text
()).
toBe
(
'
set value 2
'
)
expect
(
await
setValue2
.
text
()).
toBe
(
'
set value 2
'
)
const
setValue3
=
await
page
.
$
(
'
#set-value-3
'
)
const
setValue3
=
await
page
.
$
(
'
#set-value-3
'
)
expect
(
await
setValue3
.
text
()).
toBe
(
'
set value 3
'
)
expect
(
await
setValue3
.
text
()).
toBe
(
'
set value 3
'
)
// v-for UTSJSONObject
for
(
let
i
=
1
;
i
<=
3
;
i
++
)
{
/// key
let
utsKey
=
await
page
.
$
(
'
#utsKey
'
+
i
)
expect
(
await
utsKey
.
text
()).
toBe
(
'
utsKey
'
+
i
)
/// value
let
utsValue
=
await
page
.
$
(
'
#UTSJSONObject-value
'
+
i
)
expect
(
await
utsValue
.
text
()).
toBe
(
'
UTSJSONObject-value
'
+
i
)
}
await
page
.
waitFor
(
500
)
await
page
.
waitFor
(
500
)
const
image
=
await
program
.
screenshot
({
const
image
=
await
program
.
screenshot
({
fullPage
:
true
fullPage
:
true
});
});
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录