收藏
回答

bug反馈:swiper组件图片不显示

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 Bug swiper 客户端 6.6.7 2.0.9

滚动多张图片,部分显示,部分不显示。有的时候也能全部显示出来。

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

3 个回答

  • hexford~🐶
    hexford~🐶
    2018-06-12

    麻烦提供一下出现问题的机型和微信版本,并且给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题

    2018-06-12
    有用
    回复 1
    • 大山
      大山
      2018-06-12

      <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" style='height:{{imgheight}}px'>

      <block wx:for="{{swipers}}" wx:key="{{item.id}}">

      <swiper-item>

      <view bindtap="navito" data-id="{{item.id}}">

      <image bindload="imageLoad" style='width: 100%;height:{{imgheight}}px' src="{{item.pic}}"></image>

      </view>

      </swiper-item>

      </block>

      </swiper>



      Page({

      data: {

      swipers: null,  //onshow函数中对这个做了初始化

      imgheight: 0,

      imgwidth: 0,

      indicatorDots: false,

      autoplay: true,

      interval: 2000,

      duration: 500

      },


      imageLoad: function (e) {

      var tmpwidth = e.detail.width

      var tmpheight = e.detail.height

      var ratio = tmpwidth / tmpheight

      this.setData({

      imgwidth: wx.getSystemInfoSync().screenWidth,

      imgheight: wx.getSystemInfoSync().screenWidth / ratio,

      })

      }





      2018-06-12
      回复
  • 2018-06-14

    复现率高 + 1

    2018-06-14
    有用 1
    回复
  • 大山
    大山
    2018-06-13

    机型:多种机型、android、ios都出现过,复现率很高 微信版本:6.6.7

    2018-06-13
    有用 1
    回复
登录 后发表内容