微信小程序TypeError: Cannot read property ‘$$‘ of undefined

文章讲述了在微信小程序中处理轮播图组件时,如何使用wx:if条件判断避免当图片源为空时导致的错误。通过检查list.imageurl.length来决定swiper是否渲染,并使用wx:if防止没有src的图片渲染,确保组件的正确显示。
摘要由CSDN通过智能技术生成

 <!-- 轮播图 -->
  <view style="height: {{height}}rpx;">
    <swiper wx:if="{{list.imageurl.length>0}}" indicator-dots="{{true}}" current="currentTab" bindchange="switchTab" indicator-color="#2E8B57" circular="true" style="height:100%;">
      <block wx:for="{{list.imageurl}}" wx:key="index" >
        <swiper-item bindtap='{{item.caozuoname}}' style="justify-content: center;display: flex;align-items: center;">
          <image src='{{item}}' bindtap="fangda" mode="aspectFit" style="border-radius: 5rpx;display: block;height: 1000rpx;;" />
        </swiper-item>
      </block>
    </swiper>
  </view>

解决方法就是用wx:if判断swiper是否需要渲染

如果里面是一个图片,但是src为null,就会报错,需要用wx:if判断,不能渲染没有src的图片

<swiper wx:if="{{list.imageurl.length>0}}" 这里

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值