search
HomeWeb Front-endJS TutorialBootstrap4 and Vue2 implement paging query function (code attached)

This time I will bring you Bootstrap4 and Vue2 to implement the paging query function (with code), what are the precautions for Bootstrap4 and Vue2 to implement the paging query function, the following is the actual combat Let’s take a look at the case.

Write in front

The project is designed to separate the front and back ends, using Nginx as the front-end resource server, and at the same time realizing the reverse proxy of the back-end service. The background is a Java Web project, using Tomcat to deploy services.

  1. Front-end framework: Bootstrap4, Vue.js2

  2. Backend framework: spring boot, spring data JPA

  3. Development tools: IntelliJ IDEA, Maven

How to use Bootstrap Vue to implement dynamic table, data addition and deletion and other operations, please check out Using Bootstrap Vue.js to implement dynamic display, addition and deletion of tables. After the explanation is completed, the topic of this article begins.

1. Use Bootstrap to build a table

Table area

<p>
   </p>
                                                                                                                                                 
序号会员号姓名手机号办公电话邮箱地址状态
{{pageNow*10 + index+1}}{{user.id}}{{user.username}}{{user.mobile}}{{user.officetel}}{{user.email}}正常注销
  

Paging area

<p>
   </p>
        
  •            
  •     
  •           
  •     
  •      {{n}}     
  •     
  •           
  •     
  •           
  •    
  

2. Initialize VueObject and data

Create Vue object

var vueApp = new Vue({
  el:"#vueApp",
  data:{
   userList:[],
   perPage:10,
   pageNow:0,
   totalPages:0,
   checkedRows:[]
  },
  methods:{
   switchToPage:function (pageNo) {
    if (pageNo = this.totalPages){
     return false;
    }
    getUserByPage(pageNo);
   }
  }
 });

Initialization data

function getUserByPage(pageNow) {
 $.ajax({
  url:"/user/"+pageNow,
  success:function (datas) {
  vueApp.userList = datas.content;
  vueApp.totalPages = datas.totalPages;
  vueApp.pageNow = pageNow;
  },
  error:function (res) {
  console.log(res);
  }
 });
 }

Complete js code:

<script>
 var vueApp = new Vue({
 el:"#vueApp",
 data:{
  userList:[],
  perPage:10,
  pageNow:0,
  totalPages:0,
  checkedRows:[]
 },
 methods:{
  switchToPage:function (pageNo) {
  if (pageNo < 0 || pageNo >= this.totalPages){
   return false;
  }
  getUserByPage(pageNo);
  }
 }
 });
 getUserByPage(0);
 function getUserByPage(pageNow) {
 $.ajax({
  url:"/user/"+pageNow,
  success:function (datas) {
  vueApp.userList = datas.content;
  vueApp.totalPages = datas.totalPages;
  vueApp.pageNow = pageNow;
  },
  error:function (res) {
  console.log(res);
  }
 });
 }
</script>

3. Use JPA to implement paging query

Controller receives request

/**
 * 用户相关请求控制器
 * @author louie
 * @date 2017-12-19
 */
@RestController
@RequestMapping("/user")
public class UserController {
 @Autowired
 private UserService userService;
 /**
 * 分页获取用户
 * @param pageNow 当前页码
 * @return 分页用户数据
 */
 @RequestMapping("/{pageNow}")
 public Page<user> findByPage(@PathVariable Integer pageNow){
 return userService.findUserPaging(pageNow);
 }
}</user>

JPA paging query

@Service
public class UserServiceImpl implements UserService {
 @Value("${self.louie.per-page}")
 private Integer perPage;
 @Autowired
 private UserRepository userRepository;
 @Override
 public Page<user> findUserPaging(Integer pageNow) {
 Pageable pageable = new PageRequest(pageNow,perPage,Sort.Direction.DESC,"id");
 return userRepository.findAll(pageable);
 }
}</user>

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

Analysis of steps for building multi-page applications with webpack

How to add a progress bar to uploaded images in axios

Where does this point when vue uses axios

The above is the detailed content of Bootstrap4 and Vue2 implement paging query function (code attached). For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
vue2与vue3中的生命周期执行顺序有什么区别vue2与vue3中的生命周期执行顺序有什么区别May 16, 2023 pm 09:40 PM

vue2与vue3中生命周期执行顺序区别生命周期比较vue2中执行顺序beforeCreate=>created=>beforeMount=>mounted=>beforeUpdate=>updated=>beforeDestroy=>destroyedvue3中执行顺序setup=>onBeforeMount=>onMounted=>onBeforeUpdate=>onUpdated=>onBeforeUnmount=&g

PHP实现IP地址查询功能PHP实现IP地址查询功能Jun 22, 2023 pm 11:22 PM

随着网络的快速发展,IP地址成为了网络通信中不可或缺的一环。在进行网络安全监测、流量管理、电商广告定向投放等方面,IP地址的信息非常重要。因此,为了方便用户查询IP地址/域名信息,许多网站提供了IP地址查询功能。本篇文章将介绍如何用PHP实现IP地址查询功能,供读者参考。一、何为IP地址?IP地址(InternetProtocolAddress)即网络协

快速搞懂Vue2 diff算法(图文详解)快速搞懂Vue2 diff算法(图文详解)Mar 17, 2023 pm 08:23 PM

diff算法是一种通过同层的树节点进行比较的高效算法,避免了对树进行逐层搜索遍历。那么大家对diff算法吗有多少了解?下面本篇文章就来带大家深入解析下vue2的diff算法,希望对大家有所帮助!

PHP开发技巧:如何实现数据表关联和查询功能PHP开发技巧:如何实现数据表关联和查询功能Sep 20, 2023 pm 04:28 PM

PHP开发技巧:实现数据表关联和查询功能在PHP开发中,经常需要处理数据库相关的操作,其中包括数据表之间的关联和查询。本文将介绍如何利用PHP来实现数据表的关联和查询功能,并提供具体的代码示例。一、数据表关联的概念数据表关联是指通过某种规则将两个或多个数据表中的记录进行连接,获取关联表的数据信息。常见的数据表关联方式包括一对一关联、一对多关联和多对多关联。一

教程:Java开发高德地图地理围栏报警数据查询功能的实现步骤教程:Java开发高德地图地理围栏报警数据查询功能的实现步骤Jul 29, 2023 pm 06:45 PM

教程:Java开发高德地图地理围栏报警数据查询功能的实现步骤引言:高德地图是一款功能强大的地理信息服务平台,提供了丰富的地图数据和服务,包括地理围栏功能。地理围栏是一种根据地理坐标系范围进行约束的功能,可以实现地域、区域等范围的监控和报警。在本教程中,我们将介绍如何使用Java开发高德地图地理围栏报警数据查询功能,并提供相应的代码示例。步骤1:申请高德地图开

如何利用PHP开发一个简单的IP地址查询功能如何利用PHP开发一个简单的IP地址查询功能Sep 25, 2023 am 09:52 AM

如何利用PHP开发一个简单的IP地址查询功能在网络中,IP地址是唯一标识一个设备的数字地址。有时候我们需要获取一个IP地址的相关信息,比如所属地理位置、ISP供应商等。在本文中,我们将使用PHP来开发一个简单的IP地址查询功能。实现这个功能需要借助第三方的IP地址查询服务API,通过向该API发送HTTP请求,获取IP地址的相关信息。以下是具体的步骤和代码示

如何利用PHP开发一个简单的实时天气查询功能如何利用PHP开发一个简单的实时天气查询功能Sep 24, 2023 pm 12:03 PM

如何利用PHP开发一个简单的实时天气查询功能前言:随着科技的不断发展,人们对天气的关注也越来越多。因此,开发一个实时天气查询功能的网站或应用程序成为了一项非常热门的需求。本文以PHP作为开发语言,介绍如何利用PHP开发一个简单的实时天气查询功能,并提供具体的代码示例。一、获取天气数据要实现天气查询功能,首先需要获得实时天气数据。目前市面上有很多天气API供开

聊聊Vue2和Vue3中怎么设置404界面聊聊Vue2和Vue3中怎么设置404界面Feb 17, 2023 pm 02:25 PM

本篇文章带大家进行Vue学习,聊聊Vue2和Vue3中设置404界面的方法,希望对大家有所帮助!

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)