Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
af70313e
U
uni-app
项目概览
DCloud
/
uni-app
6 个月 前同步成功
通知
751
Star
38709
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
8
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
8
Issue
8
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
af70313e
编写于
4月 28, 2023
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wip(uts): v-for
上级
d455d602
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
25 addition
and
18 deletion
+25
-18
packages/uni-app-uts/__tests__/transforms/vFor.spec.ts
packages/uni-app-uts/__tests__/transforms/vFor.spec.ts
+3
-3
packages/uni-app-uts/src/plugins/uvue/compiler/codegen.ts
packages/uni-app-uts/src/plugins/uvue/compiler/codegen.ts
+1
-14
packages/uni-app-uts/src/plugins/uvue/compiler/runtimeHelpers.ts
...s/uni-app-uts/src/plugins/uvue/compiler/runtimeHelpers.ts
+1
-1
packages/uni-app-uts/src/plugins/uvue/compiler/transforms/vFor.ts
.../uni-app-uts/src/plugins/uvue/compiler/transforms/vFor.ts
+20
-0
未找到文件。
packages/uni-app-uts/__tests__/transforms/vFor.spec.ts
浏览文件 @
af70313e
...
...
@@ -4,19 +4,19 @@ describe('compiler:v-for', () => {
test
(
'
template v-for
'
,
()
=>
{
assert
(
`<view v-for="item in 10" :key="item">text</view>`
,
`createElementVNode(Fragment, null, renderList(10, (item, _key_, _index_):VNode => {
`createElementVNode(Fragment, null,
RenderHelpers.
renderList(10, (item, _key_, _index_):VNode => {
return createElementVNode("view", new Map<string,any>([["key", item]]), "text")
}), 64 /* STABLE_FRAGMENT */)`
)
assert
(
`<view v-for="(item, index) in [1,2,3]" :key="index">text</view>`
,
`createElementVNode(Fragment, null, renderList([1,2,3], (item, index, _index_):VNode => {
`createElementVNode(Fragment, null,
RenderHelpers.
renderList([1,2,3], (item, index, _index_):VNode => {
return createElementVNode("view", new Map<string,any>([["key", index]]), "text")
}), 64 /* STABLE_FRAGMENT */)`
)
assert
(
`<view v-for="(item, key, index) in {a:'a',b:'b'}" :key="index">text</view>`
,
`createElementVNode(Fragment, null, renderList({a:'a',b:'b'}, (item, key, index):VNode => {
`createElementVNode(Fragment, null,
RenderHelpers.
renderList({a:'a',b:'b'}, (item, key, index):VNode => {
return createElementVNode("view", new Map<string,any>([["key", index]]), "text")
}), 64 /* STABLE_FRAGMENT */)`
)
...
...
packages/uni-app-uts/src/plugins/uvue/compiler/codegen.ts
浏览文件 @
af70313e
...
...
@@ -394,23 +394,10 @@ function genCallExpression(node: CallExpression, context: CodegenContext) {
const
callee
=
isString
(
node
.
callee
)
?
node
.
callee
:
helper
(
node
.
callee
)
push
(
callee
+
`(`
,
node
)
if
(
callee
===
'
renderList
'
)
{
if
(
callee
===
'
RenderHelpers.
renderList
'
)
{
node
.
arguments
.
forEach
((
item
:
any
)
=>
{
if
(
item
.
type
===
18
)
{
item
.
returnType
=
'
VNode
'
if
(
item
.
params
.
length
===
1
)
{
const
key
=
{
...
item
.
params
[
0
]
}
key
.
content
=
'
_key_
'
item
.
params
.
push
(
key
)
const
index
=
{
...
item
.
params
[
0
]
}
index
.
content
=
'
_index_
'
item
.
params
.
push
(
index
)
}
else
if
(
item
.
params
.
length
===
2
)
{
const
index
=
{
...
item
.
params
[
0
]
}
index
.
content
=
'
_index_
'
item
.
params
.
push
(
index
)
}
}
})
}
...
...
packages/uni-app-uts/src/plugins/uvue/compiler/runtimeHelpers.ts
浏览文件 @
af70313e
...
...
@@ -8,6 +8,6 @@ export const OPEN_BLOCK = Symbol(`openBlock`)
registerRuntimeHelpers
({
[
IS_TRUE
]:
'
isTrue
'
,
[
V_SHOW
]:
'
vShow
'
,
[
RENDER_LIST
]:
'
renderList
'
,
[
RENDER_LIST
]:
'
RenderHelpers.
renderList
'
,
[
FRAGMENT
]:
'
Fragment
'
,
})
packages/uni-app-uts/src/plugins/uvue/compiler/transforms/vFor.ts
浏览文件 @
af70313e
...
...
@@ -272,6 +272,26 @@ export function processFor(
const
{
addIdentifiers
,
removeIdentifiers
,
scopes
}
=
context
const
{
source
,
value
,
key
,
index
}
=
parseResult
if
(
key
===
undefined
)
{
parseResult
.
key
=
{
constType
:
2
,
content
:
'
_key_
'
,
isStatic
:
false
,
loc
:
value
?.
loc
!
,
type
:
4
,
}
}
if
(
index
===
undefined
)
{
parseResult
.
index
=
{
constType
:
2
,
content
:
'
_index_
'
,
isStatic
:
false
,
loc
:
value
?.
loc
!
,
type
:
4
,
}
}
const
forNode
:
ForNode
=
{
type
:
NodeTypes
.
FOR
,
loc
:
dir
.
loc
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录