- wx:for循环item不改变
[图片] 如图,如果这样使用两次item就会导致下面的item无效,比如我循环的是数组[5, 6, 7, 1, 2, 3, 4],button的类名是正确的,但是显示的却是1, 2, 3, 4, 5, 6, 7无论做什么操作都是这样的。 但是,如果我像下图这样操作: [图片] 使用index来改变类名,这样item就会正常显示,不知道问题的原因是什么,求解答
2017-11-28 - swiper和scroll-view滑动scroll,swiper一起滑动
功能需求:类似企鹅优选的首页,把scroll-view放在swiper-item中,滑动scroll-view时swiper会直接下一张,跪求解答 代码如下: <swiper indicator-dots="{{true}}" autoplay="{{false}}" interval="{{5000}}" duration="{{1000}}" class='swiper-box'> <block wx:for="{{imgUrls}}"> <swiper-item> <image class="page_bg {{loaded?'loaded':''}}" src="{{item}}"></image> <view class="slide_image"> <view class="title_desc"> <text class="title">测试title</text> <text class="desc">测试详情</text> </view> <scroll-view class="first_sv" scroll-x="true" style=" white-space: nowrap;"> <view class="sv_item {{svList.length==1?'only_one':''}}" id="{{item.id}}" wx:for="{{svList}}" wx:key="{{index}}" bindtap="ViewCharityDetail"> <image class="item_bg" src="{{item.image}}" mode="scaleToFill"></image> <view class="item_container"> <text class="charity_title">{{item.title}}</text> <!-- <text class="charity_desc">{{item.description}}</text> --> <!--<view class="charity_desc"> <template is="wxParse" data="{{wxParseData:replyTemArray[index]}}" /> </view>--> </view> </view> </scroll-view> </view> </swiper-item> </block> </swiper>
2017-11-27