search
HomeBackend DevelopmentPHP TutorialthinkPHP5 uses laypage paging plug-in to implement list paging function_php example

This article mainly introduces thinkPHP5 to you in detail using the laypage paging plug-in to implement the list paging function. It has certain reference value. Friends who are interested in thinkPHP5 can refer to it. Let’s take a look at the layout page of thinkPHP5

1. Background

When using the thinkPHP framework to do projects, we often Encountered pagination of the contents of the list. The thinkPHP framework comes with a paging function, but it has flaws. This flaw is that every time the data of each page is returned to the page, the JS, CSS and other resources required by the page need to be reloaded. If the page contains too much JS and is too large, it will increase traffic pressure. Therefore, we use the laypage plugin. Just use ajax to request the data of each page every time, and there is no need to load the page repeatedly.

2. Paging process

As shown in the figure below:

Process description:

1) Investigate the function in App.php, which calls the fetch function. The fetch function renders list.html.
2) list.html calls the function to get the total number of pages and gets the total number of pages.
3) Get the first page of data.
4) Initialize the laypage paging plug-in.
5) Click on the page number to trigger paging query.

3. Code related to implementing paging function

1. Code of App.php Controller


//fetch渲染页面 
public function index() 
{ 
 return $this->fetch('list'); 
} 
 
 
 
 //根据页面传入的页码查询数据 
 public function getPage() 
 { 
   
   <span style="color:#FF0000;">// 获取页面传入的页码 </span>      
   $nowpage = input("page"); 
   //每页显示10条数据 
   $limits = 10; 
 
   $app = new appInfo(); 
   $page_info = $app->limit(($nowpage * $limits), $limits)->select(); 
 
   // ajax 分页输出 
   $info = [&#39;pageinfo&#39;=>$page_info,&#39;nowpage&#39;=>$nowpage,&#39;nowpage&#39;=>$nowpage]; 
 
  return json($info); 
 
 
 } 
 
 
 //获取所有页数 
public function getAllPage(){ 
 
 try{ 
  $count = appInfo::count(); 
 
  $limits = 10; 
  // 计算总页面 
  $allpage = ceil($count / $limits); 
 
  $info =[&#39;allpage&#39;=>$allpage]; 
 }catch (\Exception $e){ 
  abort(500,$e->getMessage(),[&#39;result&#39;=>TopsecGWErrer::TOPSEC_GW_ERR_NO_UNKNOWN]); 
 } 
 
 return json($info); 
}


2. The html code in list.html


<p class="box-body"> 
  <table id="table1" class="table table-bordered table-striped"> 
   <thead> 
   <tr> 
    <th>应用名称</th> 
    <th>应用类型</th> 
    <th>应用图像</th> 
    <th>创建日期</th> 
    <th>修改日期</th> 
    <th>操作</th> 
   </tr> 
   </thead> 
   <tbody id="table_body"></tbody> 
   <tfoot> 
 
   </tfoot> 
  </table> 
  <p id="result"></p> 
  <p class=" "> 
   <button id="add_app" type="button" class="btn btn-primary col-xs-offset-5" > 
    <span class=&#39;fa fa-tasks white&#39;></span>丨添加应用 
   </button> 
  </p> 
  <p id="content"> </p> 
  <p class="box-body"> 
 
   <button id="add_img" type="button" class="btn btn-primary col-xs-offset-5" > 
    <span class=&#39;fa fa-tasks white&#39;></span>丨添加图片 
   </button> 
  </p> 
 
  <!-- /.box-body --> 
 </p>


3. jQuery code in list.html


//pageCount:总页数。用于初始化laypage分页控件。 
//pageIndex:初始化当前页。显示第一页。 
//currentPage:当前页数。 
//getPageData:获取每页数据的函数。 
//url:获取每页数据的方法的路径。由控制器和函数名组成。 
 function jsonPage(pageCount, pageIndex,currentPage, getPageData,url) { 
  var laypageindex = laypage({ 
   cont: &#39;result&#39;, //容器。值支持id名、原生dom对象,jquery对象。 
   skin: &#39;#3c8dbc&#39;, 
   pages: pageCount, //通过后台拿到的总页数 
   curr: pageIndex, //初始化当前页 
   prev: &#39;上一页&#39;, //若不显示,设置false即可 
   next: &#39;下一页&#39;, //若不显示,设置false即可 
   skip: true, //是否开启跳页 
   jump: function (obj, first) { //触发分页后的回调 
    //getPageData(1); 
    if (!first) { //点击跳页触发函数自身,并传递当前页:obj.curr 
     getPageData(url,obj.curr); 
     currentPage = obj.curr; 
    } 
   } 
  }); 
 } 
 
 
/url:获取总页数据的方法的路径。由控制器和函数名组成。  
 function getAllpage(url){ 
 
  var tmp ; 
  $.ajax({ 
   type: "GET", 
   dataType: "json", 
   async: false, 
   url: PUBLIC_BASE+url, 
   success: function(json) { 
    var data = eval(json); 
    tmp=data.allpage; 
   }, 
   error: function(json) { 
 
   } 
 
  }); 
  return tmp; 
 
 } 
 
 //data:每页的数据。由JSON对象组成。 
 function instantiation(data) { 
  //begin $.each 
  $.each(data.pageinfo, function (index, item) { 
   $("#table_body").append($(&#39;<tr class="table_tr"/>&#39;) 
    .append($("<td/>").html(item.name)) 
    .append($("<td/>").html(item.desc)) 
    .append($("<td/>").html("<img  src=&#39;"+item.appImg+"&#39; / alt="thinkPHP5 uses laypage paging plug-in to implement list paging function_php example" >")) 
    .append($("<td/>").html(item.create_time)) 
    .append($("<td/>").html(item.update_time)) 
    .append( 
     $("<td />") 
      .append($("<a class=&#39;yellow&#39; id=&#39;view"+item.id+"&#39;><i class=&#39;fa fa-eye fa-fw&#39;></i>查看丨 </a>")) 
      .append($("<a class=&#39;green&#39; id=&#39;edit"+item.id+"&#39;><i class=&#39;fa fa-edit fa-fw&#39;></i>编辑丨 </a>")) 
      .append($("<a class=&#39;red&#39; id=&#39;delete"+item.id+"&#39;><i class=&#39;fa fa-remove fa-fw&#39;></i>删除丨 </a>")) 
      .append($("<a class=&#39;blue&#39; id=&#39;forbid" + item.id + "&#39;><i class=&#39;fa fa-ban fa-fw&#39;></i>禁用</a>")) 
 
    ) 
 
   ); 
 
   $("#view"+item.id).click(function() { 
    fillMainContent("/application/application?model=view&id="+item.id); 
   }) 
 
   $("#edit"+item.id).click(function() { 
    fillMainContent("/application/application?model=edit&id="+item.id); 
   }) 
 
   $("#delete"+item.id).click(function() { 
 
    deleteApp(item.id); 
    alert("删除成功"); 
 
   }) 
 
   $("#forbid"+item.id).click(function() { 
    deleteApp(item.id); 
    alert("删除成功"); 
    getPageData(currentPage); 
   }) 
 
  }); 
  //end $.each 
   
 }  
 //获取每页的数据。curr:页码 ,curl:获取数据的路径。 
 function getPageData(url,curr) { 
  curr = curr-1; 
  $.ajax({ 
 
   type: "GET", 
   dataType: "json", 
   data: {page:curr}, 
   url: PUBLIC_BASE+url, 
   success: function(json) { 
    $(&#39;#table_body&#39;).empty(); 
    var data = eval(json); 
    console.log(data); 
 
    instantiation(data); 
   }, 
 
   error: function(json) { 
 
    var data = eval(json); 
    console.log(data); 
 
   } 
 
  }); 
 
 } 
 
 <span style="color:#FF0000;">//调用函数实现分页</span> 
//获取总页数,用于初始化分页控件总页数 
 pageCount= getAllpage("/application/getAllPage"); 
 //获取第一页数据 
 getPageData("/application/getpage",1); 
 //初始化分页控件并分页 
 jsonPage(pageCount,pageIndex,currentPage,getPageData,"/application/getpage");


4. Reference resources

http://laypage.layui.com/

The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

Xiaobai’s brief introduction to using laypage paging

laypage+laytpl example

thinkphp5 paging style, tp5 paging style

The above is the detailed content of thinkPHP5 uses laypage paging plug-in to implement list paging function_php example. 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
Optimize PHP Code: Reducing Memory Usage & Execution TimeOptimize PHP Code: Reducing Memory Usage & Execution TimeMay 10, 2025 am 12:04 AM

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)