下拉不刷新

来源:9-6 歌单列表前后端交互与跨域问题

夜半之时

2020-04-23

下拉不刷新为什么啊

写回答

2回答

谢成

2020-04-24

课程中的后台管理系统没有做下拉刷新的功能。

0
1
夜半之时
表达的不好,就是我鼠标滑下去50条以后的记录显示不出来
2020-04-24
共1条回复

夜半之时

提问者

2020-04-23

data() {

    return {

      playlist: [],

      count: 50,

      loading: false,

    }

  },

  created() {

    this.getList()

  },

  mounted() {

    scroll.start(this.getList)

  },

  methods: {

    getList() {

      this.loading = true

      fetchList({

        start: this.playlist.length,

        count: this.count

      }).then(res => {

        console.log(res)

        this.playlist = this.playlist.concat(res.data)

        if (res.data.length < this.count) {

          scroll.end()

        }

        this.loading = false

      })

    }


  }


0
0

微信小程序云开发-从0打造云音乐全栈小程序

横跨小程序端、云后端、CMS一站式云开发的小程序全栈课程

1938 学习 · 2768 问题

查看课程