欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

菜鸟学习小程序之轮播图

程序员文章站 2022-06-02 23:25:19
...

其实小程序的轮播图比PC端的简单多了,没有那么多的js代码跟逻辑,但是对于新手的我来说还是踩了很多坑。

效果图:

菜鸟学习小程序之轮播图菜鸟学习小程序之轮播图

前端代码:

<!--轮播图  -->
    <view class='nav'>
      <swiper class="swiper" indicator-dots="true" autoplay="true" interval="5000" duration="500"circular="true">
        <block wx:for="{{img}}" wx:key="item"> <!-- 循环数据-->
        <swiper-item><image src='http://www.huiyin.com{{item.value}}' class='img'></image></swiper-item>
       </block>  
      </swiper >

样式代码:

.img{width: 100%;height: 100%;} .nav,.swiper{width: 100%;}

js代码:

  var that = this //js的作用域问题
    //获取轮播图
    wx.request({
      url: '接口地址',
      method: "get",
      success: function (e) {
        var data = e.data
        if (data.code == 200) {
          that.setData({
            img:data.data
          })
        }
      }
    })
官方文档:https://developers.weixin.qq.com/miniprogram/dev/component/swiper.html
相关标签: 小程序