请教下,animation怎么动态拼接名?
发布于 6 年前 作者 xiuying20 5486 次浏览 来自 官方Issues

<view wx:for="{{5}}" wx:key=’’ bind:touchstart=start bind:touchmove=move

                bind:touchend=end animation="{{ ani + item}}" 

                id=“item-{{item}}>

                {{item}}

 </view>

这个animation怎么动态拼接啊,想输出ani1,ani2。尝试用` `编译不过,ani写进data也是不生效。

不报错也不生效

2 回复
<view wx:for="{{5}}"  animation="{{ ani }}" id="item-{{item}}">
    {{item}}
</view>

‘ani’+item

回到顶部