监听element-ui table滚动事件的方法
程序员文章站
2024-02-06 12:29:52
背景
做管理平台的项目,用到了element-ui,需要通过监听el-table滚动的位置来获取最新的数据,那么怎么样监听el-table的滚动呢?
准备...
背景
做管理平台的项目,用到了element-ui,需要通过监听el-table滚动的位置来获取最新的数据,那么怎么样监听el-table的滚动呢?
准备
我们默认的技术栈是 vue+element-ui
template代码:
<el-table :data="loglist" :show-header="false" row-class-name="table-row-class" height="700" ref="table" @row-click="rowclick"> <el-table-column type="expand"> <el-table-column label="log信息" prop="message"> </el-table-column> </el-table>
绑定监听事件
mounted() { // 获取需要绑定的table this.dom = this.$refs.table.bodywrapper this.dom.addeventlistener('scroll', () => { // 滚动距离 let scrolltop = this.dom.scrolltop // 变量windowheight是可视区的高度 let windowheight = this.dom.clientheight || this.dom.clientheight // 变量scrollheight是滚动条的总高度 let scrollheight = this.dom.scrollheight || this.dom.scrollheight if (scrolltop + windowheight === scrollheight) { // 获取到的不是全部数据 当滚动到底部 继续获取新的数据 if (!this.alldata) this.getmorelog() console.log('scrolltop', scrolltop + 'windowheight', windowheight + 'scrollheight', scrollheight) } }) }
获取到新的数据后,调整滚动条的位置
getmorelog() { ... this.dom.scrolltop = this.dom.scrolltop - 100 ... }
结语
至此我们已经完成了对table的绑定! 希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: redis常用命令及结构
下一篇: 美国退休飞行教员创办无人机安全学习课程
推荐阅读
-
监听element-ui table滚动事件的方法
-
scrollspy(滚动监听)的使用方法
-
php实现事件监听与触发的方法
-
php实现事件监听与触发的方法,php事件监听触发
-
关于 python gevent 架框 作为 TCP服务器 的 代码问题 , 每个 socket 的 消息 接收 是否有使用 事件监听回调的方法呢?
-
php实现事件监听与触发的方法,php事件监听触发_PHP教程
-
php实现事件监听与触发的方法,php事件监听触发_PHP教程
-
Element-ui table中过滤条件变更表格内容的方法
-
vue element-ui 绑定@keyup事件无效的解决方法
-
php实现事件监听与触发的方法