国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > PHP > 正文

Laravel+jQuery實(shí)現(xiàn)AJAX分頁效果

2024-05-04 23:49:49
字體:
供稿:網(wǎng)友

本文實(shí)例講述了Laravel+jQuery實(shí)現(xiàn)AJAX分頁效果。分享給大家供大家參考,具體如下:

JavaScript部分:

//_______________________// listener to the [select from existing photos] button$('#photosModal').on('shown.bs.modal', function () {  // get the first page of photos (paginated)  getPhotos(function(photosObj){    displayPhotos(photosObj);  });});/*** get the photos paginated, and display them in the modal of selecting from existing photos** @param page*/function getPhotos(callback) {  $.ajax({    type: "GET",    dataType: 'json',    url: Routes.cms_photos, // this is a variable that holds my route url    data:{      'page': window.current_page + 1 // you might need to init that var on top of page (= 0)    }  })    .done(function( response ) {      var photosObj = $.parseJSON(response.photos);      console.log(photosObj);      window.current_page = photosObj.current_page;      // hide the [load more] button when all pages are loaded      if(window.current_page == photosObj.last_page){        $('#load-more-photos').hide();      }      callback(photosObj);    })    .fail(function( response ) {      console.log( "Error: " + response );    });}/*** @param photosObj*/function displayPhotos(photosObj){  var options = '';  $.each(photosObj.data, function(key, value){    options = options + "<option data-img-src='"+value.thumbnail+"' value='"+value.id+"'></option>";  });  $('#photos-selector').append(options);  $("select").imagepicker();}// listener to the [load more] button$('#load-more-photos').on('click', function(e){  e.preventDefault();  getPhotos(function(photosObj){    displayPhotos(photosObj);  });});

php控制器部分:

//_______________________//...$photos = $this->photo_repo->paginate(12);return Response::json([  'status' => 'success',  'photos' => $photos->toJson(),]);

希望本文所述對(duì)大家基于Laravel框架的PHP程序設(shè)計(jì)有所幫助。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到PHP教程頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 金华市| 琼结县| 周口市| 宜昌市| 密山市| 芜湖县| 长乐市| 阿合奇县| 社会| 洱源县| 翁牛特旗| 罗定市| 美姑县| 崇明县| 高碑店市| 南木林县| 佛坪县| 大石桥市| 龙泉市| 罗甸县| 凤城市| 木里| 临湘市| 巢湖市| 甘谷县| 南康市| 河间市| 阳西县| 尼玛县| 文成县| 化州市| 双城市| 庆元县| 许昌县| 峡江县| 毕节市| 五莲县| 四子王旗| 双城市| 双牌县| 高碑店市|