美文网首页程序员
微信小程序下拉刷新功能

微信小程序下拉刷新功能

作者: 祈澈菇凉 | 来源:发表于2020-08-11 17:45 被阅读0次

    index.wxml

    <view style=" height: 700rpx;background:#fce2ad; "></view>
    <button class='btn1' bindtap="saveCourceInfo">下拉刷新功能</button>
    

    index.js

    const app = getApp()
    Page({
      data: {
        loading: false,
      },
      onPullDownRefresh() {
        //this.getWelfareList()
        wx.showLoading({
          title: 'loading...',
        }),
          setTimeout(function () {
            wx.hideLoading()
            wx.stopPullDownRefresh()
          })
      }
    })
    
    
    

    index.json

    {
      "usingComponents": {},
      "enablePullDownRefresh": true
    }
    

    相关文章

      网友评论

        本文标题:微信小程序下拉刷新功能

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