<block wx:for="{{picList}}">
<view catchtap="{{testN}}">
<image src="{{item.imageurl}}" animation="{{item._id}}" class="{{item._id}}" ></image>
<view> {{index}} </view>
</view>
</block>
其中class="{{item._id}}" 设置有效 animation 这样设置是无效的 这算是bug还是种机制? animation只是针对数组里对象无效,单独在data 设置动态是有效的
data {animationX:"animationX
",picList:[_id:"xxxxx"]}
---> animation="{{item._id}}"这是有效的
---> animation="{{item._id}}" 这样无效???求解
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)