springboot pagehelper thymeleaf分页详细代码讲解,上一页,下一页,页码遍历,省略号

1.后台返回的数据

@RequestMapping("/bourse")
    public ModelAndView bourse(Model model, Integer pageNum) {
        List dicTypes = dicTypeService.showAlL();
        model.addAttribute("area", dicTypes);
        PageInfo> page = bourseService.findItemByPage(pageNum, 50);
        model.addAttribute("bourse", page);
        return new ModelAndView("bourse");
    }

springboot pagehelper thymeleaf分页详细代码讲解,上一页,下一页,页码遍历,省略号_第1张图片
2.前端封装


        
        
            
        
        
            
                
        
        
        
            
                
                
                
            
            
        
        
        
        
            
        
        
            
                
            
        
    

springboot pagehelper thymeleaf分页详细代码讲解,上一页,下一页,页码遍历,省略号_第2张图片
3.效果,css自己写
springboot pagehelper thymeleaf分页详细代码讲解,上一页,下一页,页码遍历,省略号_第3张图片

你可能感兴趣的:(前端)