Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
9022b1b2
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
349
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看板
提交
9022b1b2
编写于
7月 26, 2024
作者:
F
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: v-for 增加 JSON.parse 的number类型测试
上级
4bf32f5e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
21 addition
and
2 deletion
+21
-2
pages/directive/v-for/v-for-composition.uvue
pages/directive/v-for/v-for-composition.uvue
+7
-1
pages/directive/v-for/v-for-options.uvue
pages/directive/v-for/v-for-options.uvue
+6
-1
pages/directive/v-for/v-for.test.js
pages/directive/v-for/v-for.test.js
+8
-0
未找到文件。
pages/directive/v-for/v-for-composition.uvue
浏览文件 @
9022b1b2
...
@@ -6,6 +6,10 @@
...
@@ -6,6 +6,10 @@
<text class="bold mb-10">v-for number</text>
<text class="bold mb-10">v-for number</text>
<view class="mb-10" v-for="item in 3" :key="item">
<view class="mb-10" v-for="item in 3" :key="item">
<text :id="`number-${item}`">{{ item }}</text>
<text :id="`number-${item}`">{{ item }}</text>
</view>
<view class="mb-10" v-for="item in utsNumber" :key="item">
<text :id="`uts-number-${item}`">{{ item }}</text>
</view>
</view>
<view class="bold mb-10">v-for object</view>
<view class="bold mb-10">v-for object</view>
...
@@ -144,5 +148,7 @@ const mapList = new Map<string, string>([
...
@@ -144,5 +148,7 @@ const mapList = new Map<string, string>([
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' })
const utsJSONObject = reactive({ utsKey1: 'UTSJSONObject-value1', utsKey2: 'UTSJSONObject-value2', utsKey3: 'UTSJSONObject-value3' })
const utsNumber = JSON.parse("3") as number
</script>
</script>
pages/directive/v-for/v-for-options.uvue
浏览文件 @
9022b1b2
...
@@ -6,6 +6,10 @@
...
@@ -6,6 +6,10 @@
<text class="bold mb-10">v-for number</text>
<text class="bold mb-10">v-for number</text>
<view class="mb-10" v-for="item in 3" :key="item">
<view class="mb-10" v-for="item in 3" :key="item">
<text :id="`number-${item}`">{{ item }}</text>
<text :id="`number-${item}`">{{ item }}</text>
</view>
<view class="mb-10" v-for="item in utsNumber" :key="item">
<text :id="`uts-number-${item}`">{{ item }}</text>
</view>
</view>
<view class="bold mb-10">v-for object</view>
<view class="bold mb-10">v-for object</view>
...
@@ -144,7 +148,8 @@ export default {
...
@@ -144,7 +148,8 @@ export default {
['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' }
utsJSONObject: { utsKey1: 'UTSJSONObject-value1', utsKey2: 'UTSJSONObject-value2', utsKey3: 'UTSJSONObject-value3' },
utsNumber: JSON.parse("3") as number
}
}
}
}
}
}
...
...
pages/directive/v-for/v-for.test.js
浏览文件 @
9022b1b2
...
@@ -12,6 +12,14 @@ describe('v-for', () => {
...
@@ -12,6 +12,14 @@ describe('v-for', () => {
expect
(
await
num2
.
text
()).
toBe
(
'
2
'
)
expect
(
await
num2
.
text
()).
toBe
(
'
2
'
)
const
num3
=
await
page
.
$
(
'
#number-3
'
)
const
num3
=
await
page
.
$
(
'
#number-3
'
)
expect
(
await
num3
.
text
()).
toBe
(
'
3
'
)
expect
(
await
num3
.
text
()).
toBe
(
'
3
'
)
// v-for uts-number
const
utsNum1
=
await
page
.
$
(
'
#uts-number-1
'
)
expect
(
await
utsNum1
.
text
()).
toBe
(
'
1
'
)
const
utsNum2
=
await
page
.
$
(
'
#uts-number-2
'
)
expect
(
await
utsNum2
.
text
()).
toBe
(
'
2
'
)
const
utsNum3
=
await
page
.
$
(
'
#uts-number-3
'
)
expect
(
await
utsNum3
.
text
()).
toBe
(
'
3
'
)
// v-for object
// v-for object
const
value1
=
await
page
.
$
(
'
#value1
'
)
const
value1
=
await
page
.
$
(
'
#value1
'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录