当前位置:   article > 正文

el-select实现懒加载_el-select懒加载

el-select懒加载

先看一个线上的演示示例:https://code.juejin.cn/pen/7273352811440504889

背景

我们在实际开发中经常遇到这样的需求:

el-select实现懒加载,用通俗的话说,为了增加响应速度,就是初始下拉只展示50条数据,滚动条下拉到底部后,再次调用接口增量加载接下来的50条数据,重复该情况,直到数据加载完成。

实现思路 

首先需要后端提供接口支持分页查询

前端调用接口需要传参当前页(currentPage)每页展示条数(pageNumber),每次滚动条滚动到底部后 currentPage++ 

比如:初次调用接口currentPage:1,pageNumber:50;那么第二次调用时候currentPage:2,pageNumber:50;以此类推。

那么我们如何知道滚动条滚动到底部了呢?

 

 参考链接:https://blog.csdn.net/weixin_43340372/article/details/132210911?spm=1001.2014.3001.5502

以上我们理解了如何判断滚动条滚动到底部了,

那么当滚动条滚动到底部后,如何触发加载方法呢?

vue给我们提供了自定义指令,

新建自定义指令el-select-lazyloading帮定到el-select元素上,在元素第一次帮定的时候会调用

bind方法,

通过这两个类(.el-select-dropdown .el-select-dropdown__wrap)我们可以拿到滚动的盒子,

对该盒子添加scroll滚动事件,滚动到底部时触发方法。

具体实现

Api

为了更接近真实,我们先模仿一个接口调用。

  1. // 伪造接口调用
  2. class Api {
  3. #baseData = [{
  4. value: '选项1',
  5. label: '黄金糕'
  6. }, {
  7. value: '选项2',
  8. label: '双皮奶'
  9. }, {
  10. value: '选项3',
  11. label: '蚵仔煎'
  12. }, {
  13. value: '选项4',
  14. label: '龙须面'
  15. }, {
  16. value: '选项5',
  17. label: '北京烤鸭'
  18. }, {
  19. value: '选项7',
  20. label: '北京烤鸭1'
  21. }, {
  22. value: '选项8',
  23. label: '北京烤鸭2'
  24. }, {
  25. value: '选项9',
  26. label: '北京烤鸭3'
  27. }, {
  28. value: '选项10',
  29. label: '北京烤鸭4'
  30. }]
  31. getData(currentPage = 1, pageNumber = 10) {
  32. return new Promise(resolve => {
  33. setTimeout(() => {
  34. let data = [];
  35. if (currentPage > 1) {
  36. data = this.#baseData.map(item => ({ value: item.value + `currentPage-${currentPage}`, label: item.label + `currentPage-${currentPage}` }))
  37. } else {
  38. data = this.#baseData;
  39. }
  40. resolve(data);
  41. }, 1000
  42. )
  43. })
  44. }
  45. }
  46. const api = new Api();

 以上代码中,首先新建了一个Api类,在该类中提供了每次调用接口的基础数据baseData,

看到这里大家可能会有疑问为什么baseData前要加一个#号(#baseData代表为私有属性,只能在本类中访问

getData方法接受两个传参,第一个当前页(currentPage),第二个每页的条数(pageNumber)

调用接口1秒后返回数据

 代码结构

  1. <div id="app">
  2. 选择活动:
  3. <el-select v-model="value" style="width: 300px" v-el-select-lazyloading="lazyloading">
  4. <el-option :label="item.label" :value="item.value" v-for="item in list" :key="item.value"></el-option>
  5. </el-select>
  6. </div>
  7. <script>
  8. // 伪造接口调用
  9. class Api {
  10. #baseData = [{
  11. value: '选项1',
  12. label: '黄金糕'
  13. }, {
  14. value: '选项2',
  15. label: '双皮奶'
  16. }, {
  17. value: '选项3',
  18. label: '蚵仔煎'
  19. }, {
  20. value: '选项4',
  21. label: '龙须面'
  22. }, {
  23. value: '选项5',
  24. label: '北京烤鸭'
  25. }, {
  26. value: '选项7',
  27. label: '北京烤鸭1'
  28. }, {
  29. value: '选项8',
  30. label: '北京烤鸭2'
  31. }, {
  32. value: '选项9',
  33. label: '北京烤鸭3'
  34. }, {
  35. value: '选项10',
  36. label: '北京烤鸭4'
  37. }]
  38. getData(currentPage = 1, pageNumber = 10) {
  39. return new Promise(resolve => {
  40. setTimeout(() => {
  41. let data = [];
  42. if (currentPage > 1) {
  43. data = this.#baseData.map(item => ({ value: item.value + `currentPage-${currentPage}`, label: item.label + `currentPage-${currentPage}` }))
  44. } else {
  45. data = this.#baseData;
  46. }
  47. resolve(data);
  48. }, 1000
  49. )
  50. })
  51. }
  52. }
  53. const api = new Api();
  54. // 全局注册组件
  55. new Vue({
  56. el: '#app',
  57. directives: {
  58. "el-select-lazyloading": {
  59. bind(el, binding) {
  60. let SELECT_DOM = el.querySelector(
  61. ".el-select-dropdown .el-select-dropdown__wrap"
  62. );
  63. SELECT_DOM.addEventListener("scroll", function () {
  64. let condition =
  65. this.scrollHeight - this.scrollTop <= this.clientHeight;
  66. if (condition) {
  67. binding.value();
  68. }
  69. });
  70. },
  71. },
  72. },
  73. data() {
  74. return {
  75. currentPage: 1,
  76. pageNumber: 10,
  77. value: "",
  78. list: [],
  79. };
  80. },
  81. methods: {
  82. async lazyloading() {
  83. this.loading = true;
  84. const data = await api.getData(this.currentPage);
  85. this.loading = false;
  86. this.list.push(...data);
  87. this.currentPage++;
  88. }
  89. },
  90. mounted() {
  91. this.lazyloading();
  92. }
  93. })
  94. </script>

参考链接:

 https://blog.csdn.net/weixin_43340372/article/details/132210911?spm=1001.2014.3001.5502

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