Vue implements an example of pulling down and scrolling to load data

Vue implements an example of pulling down and scrolling to load data

Web projects often use the function of pulling down and scrolling to load data. Today, I will introduce the Vue-infinite-loading plug-in and explain how to use it!

Step 1: Installation

npm install vue-infinite-loading --save

Step 2: Citation

import InfiniteLoading from 'vue-infinite-loading';

export default {
  components: { InfiniteLoading }
}

Step 3: Use

1. Basic usage

<template>
  <div> <p v-for="item in list"> <span v-text="item"></span> </p> <!--The infinite-loading component should be placed at the bottom of the list, inside the scrolling box! --> <infinite-loading @infinite="infiniteHandler"></infinite-loading> </div></template><script> import InfiniteLoading from 'vue-infinite-loading';

  export default {
    data() {
      return {
        list: []
      };
    },
    methods: {
      infiniteHandler($state) {
        // Here simulates a loading delay of 1 second setTimeout(() => {
          let temp = [];
          for (let i = this.list.length + 1; i <= this.list.length + 20; i++) {
            temp.push(i);
          }
          this.list = this.list.concat(temp);
          $state.loaded();
        }, 1000);
      },
    },
    components: { InfiniteLoading }
  }</script>

2. Paging usage

<template>
    <div>
          <ul>
              <li class="hacker-news-item" v-for="(item, key) in list"></li>
        </ul>
        <infinite-loading @infinite="infiniteHandler">
            No more Data
        </infinite-loading>
    </div>
</template>    

<script>
    import InfiniteLoading from 'vue-infinite-loading';
    import axios from 'axios';

    export default {
          data() {
            return {
                  list: []
            };
          },
          methods: {
            infiniteHandler($state) {
                let api="http://xxx.com/xxx";
                //api requests data address for you axios.get(api, {
                    params: {
                        // Page number parameters (10 per page)
                          page: this.list.length / 10 + 1,
                    },
                  }).then((response) => {
                    if (response.data.length) {
                        // response.data is the array list returned by your request interface this.list = this.list.concat(response.data);
                          $state.loaded();
                          if (this.list.length / 10 === 10) {
                              // Here 10 pages of data are loaded, and the setting is not to load anymore $state.complete(); 
                          }
                    } else {
                          $state.complete();
                    }
                  });
            }
          },
          components: { InfiniteLoading }
    };
</script>

Description: $state: This component will pass a special event parameter $state to the event handler to change the loading state. The $state parameter includes three methods, namely loaded method, complete method and reset method.

  • The loaded method is used to stop the animation after each data load, and then the component will be ready for the next trigger.
  • The complete method is used to complete the infinite loading, and the component will no longer process any scrolling operations. If the method is never called when loaded calls the complete method, this component will display the result message for the user, if not, it will display no more user messages, and other content can be set by slot
  • The reset method returns the component to its original state

3. Conditional Usage

<template>
    <div class="hacker-news-list">
          <div class="hacker-news-header">
            <!--Pull down to change-->
            <select v-model="tag" @change="changeFilter()">
                  <option value="story">Story</option>
                  <option value="history">History</option>
            </select>
              <!--Or click to change-->
            <button @click="changeFilter()">Search</button>
          </div>
          <ul>
              <li class="hacker-news-item" v-for="(item, key) in list"></li>
           </ul>
           <!--Don't forget to set this ref="infiniteLoading"-->
          <infinite-loading @infinite="infiniteHandler" ref="infiniteLoading">
            No more data
          </infinite-loading>
    </div>
</template>

<script>
    import InfiniteLoading from 'vue-infinite-loading';
    import axios from 'axios';

    export default {
          data() {
            return {
                  list: [],
                  tag: 'story',
            };
          },
          methods: {
            infiniteHandler($state) {
                  const api="http://xxx.com/xxx";
                  //api requests data address for you axios.get(api, {   
                    params: {
                        // Changed conditional parameters tags: this.tag,  
                          page: this.list.length / 10 + 1,
                    },
                  }).then(({ data }) => {
                    if (data.result.length) {
                          this.list = this.list.concat(data.result);
                          $state.loaded();
                          if (this.list.length / 20 === 10) {
                            state.complete();
                          }
                    } else {
                          $state.complete();
                    }
                  });
            },
            //Change the conditional bar using this method changeFilter() {
                  this.list = [];
                  this.$nextTick(() => {
                    this.$refs.infiniteLoading.$emit('$InfiniteLoading:reset');
                  });
            },
          },
          components: { InfiniteLoading }
    }
</script>

Official link: https://peachscript.github.io/vue-infinite-loading/

GitHub link: https://github.com/PeachScript/vue-infinite-loading

The above is the details of the example of Vue's drop-down scrolling to load data. For more information about Vue's drop-down scrolling to load data, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Vue remembers the scroll bar and the perfect way to implement drop-down loading
  • Vue implements alphabetical sorting of singer list, drop-down scroll bar, and real-time update of sidebar sorting
  • Vue monitors the method of pulling a div vertical scroll bar down to the bottom
  • Vue uses mint-ui to implement pull-down refresh and infinite scrolling sample code
  • Vue implements ajax scrolling and pull-down loading, and also has loading effect (recommended)
  • Pull-down refresh instructions and scroll refresh instructions based on Vue
  • Vue mobile pull down to refresh and slide up to load
  • Vue implements network picture waterfall flow + pull down to refresh + pull up to load more (detailed steps)
  • Vue's pull-down loading is actually not that complicated
  • VueScroll implements pull-down refresh and pull-up loading on mobile devices
  • Vue plugin mescroll.js implements pull-up loading and pull-down refresh on mobile devices
  • How to encapsulate a component for pulling down to load the next page of data on a Vue mobile terminal

<<:  Examples of using the or statement in MySQL

>>:  VMware Workstation 14 Pro installation and activation graphic tutorial

Recommend

Sample code for deploying Spring-boot project with Docker

1. Basic Spring-boot Quick Start 1.1 Quick start ...

Summary of Linux ps and pstree command knowledge points

The ps command in Linux is the abbreviation of Pr...

Detailed explanation of MLSQL compile-time permission control example

Preface The simple understanding of MySQL permiss...

js to achieve simple accordion effect

This article shares the specific code of js to ac...

Vue uses GraphVis to develop an infinitely expanded relationship graph

1. Go to the GraphVis official website to downloa...

Web2.0: Causes and Solutions of Information Overload

<br />Information duplication, information o...

How to check and organize website files using Dreamweaver8

What is the purpose of creating your own website u...

MySQL Series 14 MySQL High Availability Implementation

1. MHA ​By monitoring the master node, automatic ...

25 Vue Tips You Must Know

Table of contents 1. Limit props to type lists 2....

CSS3 realizes the mask barrage function

Recently I saw a barrage effect on B station call...

How to convert mysql bin-log log files to sql files

View mysqlbinlog version mysqlbinlog -V [--versio...

Detailed Tutorial on Using xargs Command on Linux

Hello everyone, I am Liang Xu. When using Linux, ...

How to view the storage location of MySQL data files

We may have a question: After we install MySQL lo...

JavaScript code to implement a simple calculator

This article example shares the specific code of ...