收藏
回答

请问这是swiper组件的BUG么?

关于swiper组件在用Component状态下使用的情况
<view class="container">
    <swiper class="container-swiper" indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
        <block wx:for="{{eventImages}}" wx:key="*this">
            <swiper-item>
                <image src="{{item}}" width="355" height="150"></image>
            </swiper-item>
        </block>
    </swiper>
    <image></image>
</view>
为什么swiper结束标签下面要加一个<image>标签才能正常显示轮播图呢



回答关注问题邀请回答
收藏

1 个回答

  • 任昌华
    任昌华
    2022-01-01

    首先很确定的告诉你不是bug,

    image 是图片组件。支持 JPG、PNG、SVG、WEBP、GIF 等格式

    你需求如果是轮播图,只能必须是image组件。

    如果显示不正常,还请通过写wxss来控制显示效果

    2022-01-01
    有用
    回复
登录 后发表内容