首页 > 技术文章 > 小程序下拉刷新

qiusu 2020-12-10 12:11 原文

 // 页面下拉动作
  async onPullDownRefresh() {
    uni.showToast({
      title:"刷新成功",
      icon:"none"
    })
    this.params.pagenum = 1;
    // 需要清空数据
    await this.getList(true);
    uni.stopPullDownRefresh();
  },

src/pages.json

{
    "path": "pages/goods_list/index",
    "style": {
    "navigationBarTitleText": "商品列表",
    "enablePullDownRefresh": true
        }
},

 

推荐阅读