Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
570d7b6d
U
uni-app
项目概览
DCloud
/
uni-app
3 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
570d7b6d
编写于
1月 16, 2023
作者:
Q
qiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(mp): multiple v-for scope with v-if
上级
e402ded7
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
21 addition
and
3 deletion
+21
-3
packages/uni-template-compiler/__tests__/compiler-extra.spec.js
...es/uni-template-compiler/__tests__/compiler-extra.spec.js
+5
-0
packages/uni-template-compiler/lib/script/traverse/member-expr.js
.../uni-template-compiler/lib/script/traverse/member-expr.js
+14
-2
packages/uni-template-compiler/lib/script/traverse/render-list.js
.../uni-template-compiler/lib/script/traverse/render-list.js
+2
-1
未找到文件。
packages/uni-template-compiler/__tests__/compiler-extra.spec.js
浏览文件 @
570d7b6d
...
...
@@ -700,6 +700,11 @@ describe('mp:compiler-extra', () => {
'
<view><block wx:for="{{list[$root.m0]}}" wx:for-item="item" wx:for-index="index"><view><view>{{item}}</view></view></block></view>
'
,
'
with(this){var m0=get(test);$mp.data=Object.assign({},{$root:{m0:m0}})}
'
)
assertCodegen
(
'
<view v-for="(item,index) in items" :key="index"><view v-if="item"><input v-for="(item1,index1) in item" :key="index1" :placehold="getValue(item1)" :value="getValue(item)"></view></view>
'
,
'
<block wx:for="{{$root.l1}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view><block wx:if="{{item.$orig}}"><view><block wx:for="{{item.l0}}" wx:for-item="item1" wx:for-index="index1" wx:key="index1"><input placehold="{{item1.m0}}" value="{{item1.m1}}"/></block></view></block></view></block>
'
,
'
with(this){var l1=__map(items,function(item,index){var $orig=__get_orig(item);var l0=item?__map(item,function(item1,index1){var $orig=__get_orig(item1);var m0=getValue(item1);var m1=getValue(item);return{$orig:$orig,m0:m0,m1:m1}}):null;return{$orig:$orig,l0:l0}});$mp.data=Object.assign({},{$root:{l1:l1}})}
'
)
})
it
(
'
generate TemplateLiteral
'
,
()
=>
{
...
...
packages/uni-template-compiler/lib/script/traverse/member-expr.js
浏览文件 @
570d7b6d
...
...
@@ -5,7 +5,8 @@ const {
VAR_ROOT
,
IDENTIFIER_METHOD
,
IDENTIFIER_FILTER
,
IDENTIFIER_GLOBAL
IDENTIFIER_GLOBAL
,
METHOD_RENDER_LIST
}
=
require
(
'
../../constants
'
)
function
isMatch
(
name
,
forItem
,
forIndex
)
{
...
...
@@ -19,8 +20,19 @@ function findScoped (path, test, state) {
const
scoped
=
state
.
scoped
.
find
(
scoped
=>
{
const
{
forItem
,
forIndex
forIndex
,
path
:
listPath
}
=
scoped
const
funPath
=
path
.
findParent
(
path
=>
path
.
isFunctionExpression
()
&&
path
.
parentPath
.
node
.
callee
.
name
===
METHOD_RENDER_LIST
)
if
(
funPath
&&
funPath
.
parentPath
===
listPath
)
{
// TODO 为兼容历史结构仅在当前 list 父级存在 v-if 返回
const
parent
=
listPath
.
findParent
(
path
=>
path
.
isFunctionExpression
()
||
path
.
isConditionalExpression
())
if
(
parent
&&
parent
.
isConditionalExpression
())
{
return
true
}
}
else
{
return
false
}
let
match
=
false
path
.
traverse
({
noScope
:
true
,
...
...
packages/uni-template-compiler/lib/script/traverse/render-list.js
浏览文件 @
570d7b6d
...
...
@@ -136,7 +136,8 @@ module.exports = function traverseRenderList (path, state) {
forExtra
:
getForExtra
(
forItem
,
forIndex
,
path
,
state
),
propertyArray
:
[],
declarationArray
:
[],
renderSlotStatementArray
:
[]
renderSlotStatementArray
:
[],
path
}
const
forState
=
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录