- 分包异步化,在主包中使用其他分包的组件,如果一个页面有两个分包组件时,其中一个不显示?
1,如果一个主包页面有两个分包里组件时,其中一个不显示 ,注释掉一个,另外一个就显示了。 2,经常性两个都不会显示,或者直接报错找不到,完全是按照分包异步化示例做的 下面是官方示例: <view class="container"> <my-button class="button" bindclicked="buttonClicked" bindattached="buttonAttached">{{ buttonLoaded ? '点击显示列表' : '请稍候' }}</my-button> <list wx:if="{{ showList }}" items="{{ items }}"></list> </view> 另外我寻思这个bindattached="buttonAttached"也没什么用啊,完全就是起了一个提示的作用,我开始以为它是异步化渲染用的
2021-10-01 - swiper组件,不显示小圆点指示
https://developers.weixin.qq.com/miniprogram/dev/component/swiper.html <swiper class="advertise" current="{{currentIndex}}" duration="500" indicator-dots="{{true}}" indicator-color="rgba(255, 255, 255, 0.4)" indicator-active-color="#000000" autoplay="{{true}}" bindchange="swiperChange" > <swiper-item class="swiperItem" wx:for="{{bannerList}}" catchtap="advertiseBarLink" data-item="{{ item }}" wx:key="{{index}}"> <image class='device-mall' src="{{item.promotePicUrl}}"></image> </swiper-item> </swiper>
2021-06-15