Vue组件实现触底判断

非常简陋的代码,以后有空回来完善

子组件代码:

<template> <div></div> </template> <script> export default { name:'Scroll', methods:{ scrollEvent(){ if (document.documentElement.scrollTop + document.documentElement.clientHeight >= document.body.scrollHeight) { this.onBottom(); } } }, props:{ onBottom:Function }, mounted(){ window.addEventListener('scroll', this.scrollEvent,false); }, destroyed () { window.removeEventListener('scroll', this.scrollEvent,false); } } </script>

document.documentElement.scrollTop + document.documentElement.clientHeight >= document.body.scrollHeightb表示已经到页面底部了,那么就触发函数onBottom,函数onBottom是父组件传递过来的用于回调的函数 

父组件代码:

把子组件scroll放在父组件的底部(切记,不然函数不起作用),用作触底判断。

<template> <div> <scroll :onBottom = "onBottom"></scroll> </div> </template> <script> import Scroll from '@/components/scroll' export default { name: 'roll', components:{ Scroll, }, methods:{ onBottom(){ console.log('bottom') } } } </script> <style type="text/css" lang="stylus" scoped> .wrap{ height: 1000px; background: grey; width: 100%; } </style>

父子传值也可以传递data里面的函数。这里我的回调函数里面进行的操作是到底部后console出bottom

效果:

可以看到触发频次比较高,其实子组件里面应该加一个函数节流函数,限制触发频率。

Vue组件实现触底判断

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/6699ad133fead2173482c8d8dbc1a3c0.html