《PHP學(xué)習(xí):Laravel+jQuery實(shí)現(xiàn)AJAX分頁效果》要點(diǎn):
本文介紹了PHP學(xué)習(xí):Laravel+jQuery實(shí)現(xiàn)AJAX分頁效果,希望對您有用。如果有疑問,可以聯(lián)系我們。
PHP編程本文實(shí)例講述了Laravel+jQuery實(shí)現(xiàn)AJAX分頁效果.分享給大家供大家參考,具體如下:
PHP編程JavaScript部分:
PHP編程
//_______________________
// 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編程php控制器部分:
PHP編程
//_______________________
//...
$photos = $this->photo_repo->paginate(12);
return Response::json([
'status' => 'success',
'photos' => $photos->toJson(),
]);
PHP編程更多關(guān)于Laravel相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Laravel框架入門與進(jìn)階教程》、《php優(yōu)秀開發(fā)框架總結(jié)》、《smarty模板入門基礎(chǔ)教程》、《php日期與時(shí)間用法總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
PHP編程希望本文所述對大家基于Laravel框架的PHP程序設(shè)計(jì)有所幫助.
轉(zhuǎn)載請注明本頁網(wǎng)址:
http://www.snjht.com/jiaocheng/3811.html