vue滚动自动加载


[plain]  view plain  copy
 print ?
  1. <template>  
  2.     <div>  
  3.         <ul>  
  4.             <li v-for="item in articles">  
  5.                 <h2>{{item.title}}</h2>  
  6.                 <img :src="item.images" alt="">  
  7.             </li>  
  8.         </ul>  
  9.     </div>  
  10. </template>  
  11. <script>  
  12.     import axios from 'axios';  
  13.     export default{  
  14.         data(){  
  15.             return {  
  16.                 articles : []  
  17.             }  
  18.         },  
  19.         mounted(){  
  20.             // 缓存指针  
  21.             let _this = this;  
  22.             // 设置一个开关来避免重负请求数据  
  23.             let sw = true;  
  24.             // 此处使用node做了代理  
  25.             axios.get('http://localhost:3000/proxy?url=http://news-at.zhihu.com/api/4/news/latest')  
  26.                 .then(function(response){  
  27.                     // console.log(JSON.parse(response.data).stories);  
  28.                     // 将得到的数据放到vue中的data  
  29.                     _this.articles = JSON.parse(response.data).stories;  
  30.                 })  
  31.                 .catch(function(error){  
  32.                     console.log(error);  
  33.                 });  
  34.   
  35.             // 注册scroll事件并监听  
  36.             window.addEventListener('scroll',function(){  
  37.                 // console.log(document.documentElement.clientHeight+'-----------'+window.innerHeight); // 可视区域高度  
  38.                 // console.log(document.body.scrollTop); // 滚动高度  
  39.                 // console.log(document.body.offsetHeight); // 文档高度  
  40.                 // 判断是否滚动到底部  
  41.                 if(document.body.scrollTop + window.innerHeight >= document.body.offsetHeight) {  
  42.                     // console.log(sw);  
  43.                     // 如果开关打开则加载数据  
  44.                     if(sw==true){  
  45.                         // 将开关关闭  
  46.                         sw = false;  
  47.                         axios.get('http://localhost:3000/proxy?url=http://news.at.zhihu.com/api/4/news/before/20170608')  
  48.                             .then(function(response){  
  49.                                 console.log(JSON.parse(response.data));  
  50.                                 // 将新获取的数据push到vue中的data,就会反应到视图中了  
  51.                                 JSON.parse(response.data).stories.forEach(function(val,index){  
  52.                                     _this.articles.push(val);  
  53.                                     // console.log(val);  
  54.                                 });  
  55.                                 // 数据更新完毕,将开关打开  
  56.                                 sw = true;  
  57.                             })  
  58.                             .catch(function(error){  
  59.                                 console.log(error);  
  60.                             });     
  61.                     }  
  62.                 }  
  63.             });  
  64.         }  
  65.     }  
  66. </script>  
  67. <style lang="less">  
  68.     *{  
  69.         margin:0;  
  70.         padding:0;  
  71.     }  
  72.     li{  
  73.         list-style:none;  
  74.     }  
  75. </style>  
参数说明 listLoadingMore({id:"",id2:function(){},action:function(){},pageNum:10,getNew:undefined,funcArg:undefined,func:function(){},loadingMustTime:0,loadingDom:function(){},loadedDom:function(){},nullDataFunc:function(){},endFunc:function(){},errorFunc:function(){}}); id:滚动条id,不可以是body; id2:滚动列表的id,通过function自行根据情况返回; action:数据来源的ajax地址,插件会自动加上page和length(分别表示请求页数和当前已有记录数),返回格式统一是[{},{}...],此类jsonArray; ajaxType:ajax提交方式,将更改传递数据的方式,默认post; pageNum:每页加载数量,将会根据这个数量判断是否全部加载完成; getNew:自定义获取数据方法; funcArg:自定义获取数据时传递的参数,类型为函数,返回所需参数; childrenTag:列表子项的标签,默认LI; func:非自定义获取数据时,创建每行数据的方法; loadingMustTime:强制最小加载时间,默认0; loadingDom:加载中动画自定义,返回Dom或者HTML代码; loadedDom:完全加载完成动画自定义,返回Dom或者HTML代码; nullDataFunc:数据列表为空时执行的方法; endFunc:每页数据加载完成时执行的方法; errorFunc:ajax获取数据失败时调用的方法。 回调方法 调用本方法初始化后将会得到一个专属的方法集: Object {getNew:function,isFull:function,isRunning:function,isStop:function,loading:function,show:function}; getNew():忽略判断条件,强制执行加载操作。此时数据传递中,page值可能出错,但length值一定正确,请谨慎判断后在执行该方法; isFull(boolean):修改列表加载完成标志。true为全部加载完成,false则相反; isRunning(boolean):修改列表当前是否正在加载中标志。几乎没有使用的机会; isStop(boolean):设置是否停止加载,设置为true时将会阻止未来的所有加载操作; loading():根据当前滚动条的位置,自动判断是否需要加载数据; show(boolean,boolean):强制设置加载中和加载完成dom的显示或隐藏,true表示显示,false相对。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值