当前位置:   article > 正文

vue列表下拉触底加载_vue 下拉列表触底

vue 下拉列表触底
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>列表触底加载</title>
  6. <style>
  7. #main{width:600px;margin:20px auto;line-height:30px;}
  8. #main img{margin: 10px 0;}
  9. </style>
  10. </head>
  11. <body>
  12. <div id="main">
  13. <div class="list">
  14. <div style="border: 1px solid #eee; padding:20px;" v-for="(item,index) in data" :key="index">
  15. <div>{{item.title}}</div>
  16. <img :src="item.img" alt="图片" width="200" height="100" />
  17. <div>{{item.body}}</div>
  18. </div>
  19. </div>
  20. <div style="text-align:center;">loading</div>
  21. </div>
  22. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
  23. <script>
  24. window.onload = function(){
  25. new Vue({
  26. el: '#main',
  27. data: {
  28. name: '测试',
  29. data: [], // 列表数据
  30. page: 0, // 页数
  31. rows: 5, // 每页行数
  32. url: 'http://192.168.101:3000/list/page', // 请求列表的接口
  33. endScreen: false // 是否到屏幕底部,如果到屏幕底部则变为true
  34. },
  35. created(){
  36. this.getData();
  37. // 监听页面的滚动事件
  38. window.onscroll = ()=>{
  39. this.endScreen = this.screenCheck();
  40. }
  41. },
  42. watch: {
  43. // 监听屏幕是否到达底部,如果是,则增加页数,加载数据
  44. endScreen(newValue,oldValue){
  45. if(newValue){
  46. this.page++;
  47. setTimeout(()=>{
  48. this.getData(this.page, this.rows);
  49. },1000)
  50. }
  51. }
  52. },
  53. methods: {
  54. // 请求数据的方法
  55. getData(page = this.page, rows = this.rows){
  56. //fetch是新一代XMLHttpRequest的一种替代方案。无需安装其他库。可以在浏览器中直接提供其提供的api轻松与后台进行数据交互。
  57. fetch(this.url+'?page='+page+'&rows='+rows,{ method:'GET' }).then(res=>{
  58. console.log(res);
  59. return res.json(); //返回promise对象
  60. }).then(res=>{ // 真实数据
  61. console.log(res);
  62. for(let i in res.data){
  63. if(res.data[i].img){
  64. var reg = '127.0.0.1';
  65. res.data[i].img = res.data[i].img.replace(/127.0.0.1/g,'192.168.101'); // 注意跨域请求
  66. }
  67. this.data.push(res.data[i]);
  68. }
  69. })
  70. },
  71. // 检测屏幕是否到达底部的方法
  72. screenCheck(){
  73. let screenH = Math.ceil(window.innerHeight+window.scrollY); // 屏幕高度+滚动高度
  74. let eleH = document.documentElement.offsetHeight; // 网页正文全文高
  75. return screenH === eleH;
  76. }
  77. }
  78. })
  79. }
  80. </script>
  81. </body>
  82. </html>

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/532719
推荐阅读
相关标签
  

闽ICP备14008679号