下拉不刷新
来源:9-6 歌单列表前后端交互与跨域问题
夜半之时
2020-04-23
下拉不刷新为什么啊
写回答
2回答
-
谢成
2020-04-24
课程中的后台管理系统没有做下拉刷新的功能。
012020-04-24 -
夜半之时
提问者
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
})
}
}
00
相似问题