黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

通過Ajax請求動態(tài)填充頁面數(shù)據(jù)的實例

你可能得預(yù)先了解

實現(xiàn)功能:點擊頁面上的按鈕實現(xiàn)動態(tài)追加數(shù)據(jù)

實現(xiàn)原理:點擊頁面按鈕,通過ajax提交請求到后臺,后臺接收請求后進行數(shù)據(jù)庫操作,然后返回數(shù)據(jù)到前臺并進行頁面渲染

動態(tài)加載更多數(shù)據(jù)

代碼實現(xiàn)

//1.頁面布局
<div style="padding: 0 0 20px 0;">
 <input type="hidden" class="tip" value="1">
 <input style="background:#01affe;color: #fff;cursor: pointer;
    text-align:center;height:30px;vertical-align: middle;padding:0 5px;
    type="button" name="more" id="more" value="加載更多" onclick="moredata();"/>
</div>

//2.js代碼
function moredata(){
  var ptip = $('.tip').val();
  var jstr = {pageno:ptip};
  $.ajax({
   url: '${rc.getcontextpath()}/publicity/more.do',//url以具體為實現(xiàn)
   type: 'post',
   datatype: 'html',
   data:jstr,
   timeout: 5000,
   cache: false,
   beforesend: loadfunction, //加載執(zhí)行方法
   error: erryfunction, //錯誤執(zhí)行方法
   success: succfunction //成功執(zhí)行方法
  })

  function loadfunction() {
   $("#more").val('加載中...');
  }
  function erryfunction() {
  alert("獲取數(shù)據(jù)錯誤,請重試!");
  $("#more").val('加載更多');
  }
  function succfunction(data) {
  if(data!=null && data!=""){
   $('.tip').val(++ptip);
   $("#more").val('加載更多');
   $('.maincontent').append(data);
  }else{
   $("#more").val('無更多數(shù)據(jù)');
   $("#more").attr('disabled',true);
  }
 }

//3.后臺代碼
//3.1 java代碼實現(xiàn)
import java.util.list;
import javax.servlet.http.httpservletrequest;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.controller;
import org.springframework.ui.modelmap;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.requestmethod;
import com.appmoudle.base.consts;
import com.appmoudle.model.ssdj.publicity;
import com.appmoudle.service.publicityservice;

@controller
@requestmapping("/publicity")
public class moredata {

 private string ftlurl = ".../publicity/moredata.ftl";

 @autowired
 private publicityservice publicityservice;

 @requestmapping(value="more",method=requestmethod.post)
 public string getmoredata(httpservletrequest request,modelmap map){
  integer start = 0;
  string pageno = request.getparameter("pageno");
  if(pageno!=null){
   start = integer.parseint(pageno) * 20;
  }
  list<publicity> datalist = publicityservice.findlist(start, consts.page_size, null, "1", null, null);
  map.put("index_number", start);
  map.put("datalist", datalist);
  return ftlurl;
 }
}

//3.2 模板頁面
//(moredata.ftl)
<#if datalist??>
 <#list datalist as dataitem>
  <tr>
   <td class='f-blue'>${dataitem_index+1+index_number}</td>
   <td>
    <#if dataitem.comp_name?length &gt; 12>
     ${dataitem.comp_name?substring(0,12)}..
    <#else>
     ${dataitem.comp_name}
    </#if>
   </td>
   <td>${dataitem.license_number}</td>
   <td>
    <#if dataitem.license_name?length &gt; 10>
     ${dataitem.license_name?substring(0,10)}..
    <#else>
     ${dataitem.license_name}
    </#if>
   </td>  
   <td>
    <#if dataitem.validaty_start?has_content>
     ${dataitem.validaty_start?date}
    </#if>
   </td> 
   <td>
    <#if dataitem.validaty_end?has_content>
     ${dataitem.validaty_end?date}
    </#if>
   </td> 
   <td>
    <#if dataitem.license_content?length &gt; 20>
     ${dataitem.license_content?substring(0,20)}..
    <#else>
     ${dataitem.license_content}
    </#if>
    </td>
  </tr>
 </#list>
</#if>

效果截圖

后臺返回數(shù)據(jù)(帶格式)

片尾留注

1、前臺頁面點擊增加更多后,向后臺發(fā)起請求,后臺進行數(shù)據(jù)庫操作,返回數(shù)據(jù)后填充到數(shù)據(jù)模板,帶格式的數(shù)據(jù)返回到前臺填充頁面

2、代碼中的變量 ptip 指代當(dāng)前獲取次數(shù),也可理解為獲取頁數(shù),后臺設(shè)定每次獲取n條數(shù)據(jù),初次獲取是以頁面已有數(shù)據(jù)數(shù)開始,追加n條數(shù)據(jù),以此循環(huán)

3、本代碼段為項目開發(fā)中使用,因項目使用框架,后臺代碼書寫格式僅作為參考使用

以上這篇通過ajax請求動態(tài)填充頁面數(shù)據(jù)的實例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持碩編程。

相關(guān)文章