美文网首页小程序开发
微信小程序云开发 轮播图

微信小程序云开发 轮播图

作者: 高磊_IT | 来源:发表于2020-05-30 17:49 被阅读0次

[云开发文档]:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/basis/getting-started.html

我的git小程序代码地址:https://github.com/daimananshen/muCeGoodTime

app.js 页面中env环境ID记得修改成个人的小程序环境ID,如果控制台获取到了数据库的数据,页面没有展示轮播图,就是这个原因

1、先建数据库,点击 云开发-数据库,点击集合名称右边的"+"号,输入集合名称,点击“确定”按钮(我这边创建了tables)

image

2、点击“添加记录”按钮,添加json数据(系统ID可以默认,也可以自己修改)

image

3、轮播图代码(index.wxml)

<view class="container">
    <view class="page-body">
        <view class="page-section page-section-spacing swiper">
            <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
                <block wx:for="{{item}}" wx:key="key">
                    <swiper-item>
                        <image class="carouselImg" src='{{item.image}}'></image>
                    </swiper-item>
                </block>
            </swiper>
        </view>
    </view>
</view>

4、轮播图样式(index.wxss)

page {

  background-color: #f4f4f4;

}

.carousel{

  width: 100%;

  background-color: rebeccapurple;

}

.carousel_swiper{

  width: 100%;

  height: 400rpx;

  display: block;

  position: relative;

  background: #f4f4f4;

}

.carouselImg{

  width: 100%;

  height: inherit;

}

5、轮播图页面逻辑 (index.js)

/**

   * 生命周期函数--监听页面加载

   */

  onLoad: function (options) {

    //加载轮播图

    this.requestCarouselListData();

  },

  // 轮播图代码

  requestCarouselListData() {

    // 调用默认环境数据库的引用

    const db = wx.cloud.database()

    // tables数据库创建的集合名称

    const banner = db.collection('tables') 

    //promise

    banner.get().then(res => {

        this.setData({

          item: res.data

        })

      })

      .catch(err => {

        console.log(err)

      })

  },

6、轮播图展示效果

image

相关文章

  • 小程序轮播图

    | 微信小程序轮播图实现,实现在首页上轮播图,让效果更好看。查看微信小程序开发文档可知,微信小程序提供swiper...

  • 微信小程序轮播图

    微信小程序 swiper组件轮播图 照着开发文档尝试,总是能有所收获.之前做Android开发,做个轮播图并不简单...

  • 五分钟掌握微信小程序轮播图

    微信小程序轮播图实现,比Android 轮播图来说,显得轻松多了。微信小程序提供swiper组件,官网api提供的...

  • 微信小程序云开发 轮播图

    [云开发文档]:https://developers.weixin.qq.com/miniprogram/dev/...

  • 微信小程序知识全景思维导图

    微信小程序思维导图 腾讯云小程序学习地址 小程序开发文档 小程序开发社区

  • 微信小程序开发轮播图

    1.json页面 2.index.wxml 其中: swiper 标签表示滑块视图容器;swiper-item 标...

  • 微信小程序云开发(一)

    什么是微信云开发 微信云开发是微信团队联合腾讯云推出的专业的小程序开发服务。 开发者可以使用云开发快速开发小程序、...

  • 微信小程序云开发支付

    微信小程序的云开发支付先看下微信官方给出的流程图: 这张图里,开发者只需要关注的是小程序和云函数端即可;云函数做了...

  • 小程序Cloud开发归纳

    小程序云开发 小程序·云开发是微信团队联合腾讯云推出的专业的小程序开发服务。开发者可以使用云开发快速开发小程序、小...

  • 微信小程序实现类3D轮播图

    在写微信小程序时,有写到实现3D轮播图的效果,可以直接使用微信小程序中自带的组件swiper来实现 效果图如下: ...

网友评论

    本文标题:微信小程序云开发 轮播图

    本文链接:https://www.haomeiwen.com/subject/fajhzhtx.html