vue实现下拉加载根本没那么复杂
之前缺乏移动端的经验。一直不知道上拉加载,下拉刷新是怎么实现的。现在正好有个产品有这样一个需求。想了一会没有思路。就去找插件。啥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 单页面 Meta SEO的另一种思路 框架
2019-3-7
-
Vue2 SSR渲染, 如何根据不同页面修改 meta 框架
2017-12-10
-
vue+element-ui+slot-scope或原生实现可编辑表格(日历) 框架
2018-11-23
-
vue-cli项目使用mock数据的方法(借助express) 框架
2019-6-13
-
从官网学习Node.js Process模块方法速查 框架
2018-12-14
-
vue-split-table【表格合并和编辑插件】 框架
2018-10-29
-
让NodeJS在你的项目中发光发热 框架
2019-7-20
-
vue2.0嵌套路由实现豆瓣电影分页功能(附加豆瓣web-app) 框架
2019-3-10
-
将React Native整合进Android项目超详细图文教程 框架
2019-3-11
-
Docz 用 MDX 写 React UI 组件文档 框架
2018-9-18