vue实现下拉加载其实没那么复杂
作者:pppercyWang 时间:2024-05-29 22:29:53
前言
之前缺乏移动端的经验。一直不知道上拉加载,下拉刷新是怎么实现的。现在正好有个产品有这样一个需求。想了一会没有思路。就去找插件。啥vue-infinite-scroll,vue-virtual-scroll-list。啊呀,牛!无限滚动,十万条数据渲染。
经过我一大圈的折腾。还是默默的卸载了插件。我只是需要实现一个下拉加载,不需要其他这么多的功能。看了看其他人的源码,直接撸了起来,实现一个List组件。
效果展示
MList.vue
<template>
<div class="list-wrap">
<div class="content" ref="list" @scroll="onScroll">
<slot></slot>
</div>
<div class="loading" v-show="loading">正在加载数据......</div>
</div>
</template>
<script lang='ts'>
import { Component, Vue, Watch, Prop } from "vue-property-decorator";
@Component({
components: {}
})
export default class extends Vue {
@Prop()
private loading!: boolean;
private onScroll() {
const obj: any = this.$refs.list;
// clientHeight 视口高度 scrollTop 滚动条离顶部的高度 scrollHeight 列表内容的高度
if (obj.clientHeight + obj.scrollTop === obj.scrollHeight) {
this.$emit("toBottom");
}
}
}
</script>
<style scoped lang="scss">
.list-wrap {
width: 100%;
height: 100%;
position: relative;
.content {
width: 100%;
height: 100%;
overflow-y: scroll;
}
.loading {
position: absolute;
bottom: -20px;
width: 100%;
height: 20px;
color: #ffffff;
}
}
::-webkit-scrollbar { // 去除滚动条边框
width: 0 !important;
}
::-webkit-scrollbar {
width: 0 !important;
height: 0;
}
</style>
使用组件
<div class="body">
<m-list @toBottom="fetchNewData()" :loading="loading">
<code-info class="item" v-for="(item,index) in dataList" :key="index"></code-info>
</m-list>
</div>
private dataList: any[] = [1, 2, 3, 4, 5, 6, 7, 8];
private loading: boolean = false;
private fetchNewData() {
this.loading = true;
setTimeout(() => {
this.dataList.push(1, 2, 3);
const ref: any = this.$refs.vueLoad;
this.loading = false;
}, 1000);
}
这里需要注意的是m-list的父容器一定要固定高度,本例为body。
来源:https://segmentfault.com/a/1190000020053388
标签:vue,下拉加载
0
投稿
猜你喜欢
一文搞懂python可迭代对象,迭代器,生成器,协程
2023-08-22 18:45:13
numpy矩阵数值太多不能全部显示的解决
2023-09-09 13:55:41
python里面单双下划线的区别详解
2023-03-22 12:39:22
解决 jupyter notebook 回车换两行问题
2022-09-11 17:23:46
在脚本中单独使用django的ORM模型详解
2021-03-09 05:17:26
详解python实现邮件解析的方法
2023-02-19 04:03:20
Python实现删除时保留特定文件夹和文件的示例
2021-11-19 01:09:38
Python 3.7新功能之dataclass装饰器详解
2023-09-13 16:32:38
smarty缓存用法分析
2024-06-07 15:44:41
解析:怎样在MySQL中获得更好的搜索结果
2008-11-27 15:19:00
Mysql中正则表达式Regexp常见用法及说明
2024-01-14 21:51:35
PHP getName()函数讲解
2023-06-06 08:28:25
opencv实现图像旋转效果
2023-07-17 13:28:40
mysql unsigned 用法及相减出现补数溢出解决方法
2024-01-22 19:26:53
golang之数组切片的具体用法
2024-04-29 13:06:43
python的scipy.stats模块中正态分布常用函数总结
2021-06-26 16:03:04
Oracle 的入门心得 强烈推荐
2009-05-24 19:55:00
oracle中rownum和row_number()
2024-01-12 19:21:37
如何安装多版本python python2和python3共存以及pip共存
2021-03-23 05:08:58
IE bug: 消失的绝对定位元素
2009-10-26 17:59:00