Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
a7dee553
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,发现更多精彩内容 >>
提交
a7dee553
编写于
8月 13, 2020
作者:
Q
qiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: 修复 v-for 嵌套 v-if 时,编译到小程序端运行报错的问题 fixed #2011
上级
ade9d7e0
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
27 addition
and
6 deletion
+27
-6
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
+22
-6
未找到文件。
packages/uni-template-compiler/__tests__/compiler-extra.spec.js
浏览文件 @
a7dee553
...
...
@@ -702,5 +702,10 @@ describe('mp:compiler-extra', () => {
'
<block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view><block wx:if="{{item.$orig.length}}"><view>{{item.m0}}</view></block></view></block>
'
,
'
with(this){var l0=__map(list,function(item,index){var $orig=__get_orig(item);var m0=item.length?getValue(item):null;return{$orig:$orig,m0:m0}});$mp.data=Object.assign({},{$root:{l0:l0}})}
'
)
assertCodegen
(
'
<view v-for="(item,index) in list" :key="index"><view v-if="item.length>0">{{getValue(item)}}</view></view>
'
,
'
<block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view><block wx:if="{{item.$orig.length>0}}"><view>{{item.m0}}</view></block></view></block>
'
,
'
with(this){var l0=__map(list,function(item,index){var $orig=__get_orig(item);var m0=item.length>0?getValue(item):null;return{$orig:$orig,m0:m0}});$mp.data=Object.assign({},{$root:{l0:l0}})}
'
)
})
})
packages/uni-template-compiler/lib/script/traverse/member-expr.js
浏览文件 @
a7dee553
...
...
@@ -2,7 +2,9 @@ const t = require('@babel/types')
const
traverse
=
require
(
'
@babel/traverse
'
).
default
const
{
VAR_ROOT
VAR_ROOT
,
IDENTIFIER_METHOD
,
IDENTIFIER_FILTER
}
=
require
(
'
../../constants
'
)
function
isMatch
(
name
,
forItem
,
forIndex
)
{
...
...
@@ -42,15 +44,29 @@ function findTest (path, state) {
let
tests
while
(
path
.
parentPath
&&
path
.
key
!==
'
body
'
)
{
if
(
path
.
key
===
'
consequent
'
||
path
.
key
===
'
alternate
'
)
{
let
test
=
t
.
arrayExpression
([
t
.
clone
(
path
.
container
.
test
)])
const
testOrig
=
path
.
container
.
test
let
test
=
t
.
arrayExpression
([
t
.
cloneDeep
(
testOrig
)])
traverse
(
test
,
{
noScope
:
true
,
MemberExpression
(
path_
)
{
MemberExpression
(
memberExpressionPath
)
{
const
names
=
state
.
scoped
.
map
(
scoped
=>
scoped
.
forItem
)
const
node
=
path_
.
node
const
node
=
memberExpressionPath
.
node
const
objectName
=
node
.
object
.
name
if
(
objectName
===
VAR_ROOT
||
(
names
.
includes
(
objectName
)
&&
path
.
scope
.
hasOwnBinding
(
node
.
property
.
name
)))
{
path_
.
replaceWith
(
node
.
property
)
const
property
=
node
.
property
const
propertyName
=
property
.
name
if
(
objectName
===
VAR_ROOT
||
(
names
.
includes
(
objectName
)
&&
(
propertyName
===
IDENTIFIER_METHOD
||
propertyName
===
IDENTIFIER_FILTER
)))
{
let
property
traverse
(
testOrig
,
{
noScope
:
true
,
Identifier
(
identifierPath
)
{
const
node
=
identifierPath
.
node
if
(
node
.
name
===
propertyName
)
{
property
=
node
identifierPath
.
stop
()
}
}
})
memberExpressionPath
.
replaceWith
(
property
)
}
}
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录