列表渲染加上数据绑定的时候有的地方成功有的地方不成功,代码如下:
{{idx}}:{{item.answer}} 处显示是正常的
但是 style=“background:{{bgColor[idx]}}” 和 data-cellidx="{{idx}}" 这两处代码就会出现绑定不成功的情况
<view class=“question-answers”>
<view class=“answer-line” wx:for="{{currentQ.answers}}" wx:key=“mtcelldata” wx:for-index=“idx”>
<view class=“answer-cell” style=“background:{{bgColor[idx]}}” bindtap=“answerCellAction” data-cellidx="{{idx}}">
<view class=“answer-cell-bg”>
<view class=“answer-cell-text”>{{idx}}:{{item.answer}} </view>
<image class=“answer-cell-img” wx:if="{{item.img.length!=0}}" src="{{item.img}}" mode=“aspectFit”></image>
</view>
</view>
</view>
</view>