收藏
回答

开发者工具中能加载出图片,但手机却加载不出来,这是为什么?

wxml中:

        <!--轮播图-->

        <swiper class="ad-contentindicator-dots="trueautoplay="trueinterval="3000duration="1200">

            <block wx:for-items="{{lunboData}}" wx:key="index">

            <swiper-item class="ad">

            <image src="{{item}}" class="ad-image"></image>

            </swiper-item>

        </block>

        </swiper>

js中:

  onLoad(){

    const that = this

    if(this.data.lunboData==null){

      console.log("进来获取轮播图")

      db.collection("SystemValue").get().then(res=>{

        var lunboData = res.data[0].lunboData

        that.setData({

          lunboData:lunboData

        })

        console.log("获取轮播图成功")

        console.log(lunboData)

      })

    }

  },

在手机端有获取到照片地址:

这是属于页面加载问题吗,可以怎么解决呢

回答关注问题邀请回答
收藏
登录 后发表内容