使用 ajax 分页获取查询字符串
Getting query string with ajax pagination
我知道当您添加 ->appends(['location' => $search])
之类的内容时会有疑问。当您使用分页时,它甚至会将搜索查询保存到下一页。现在我正在使用 ajax 进行分页,我有这个 js 代码
<script type="text/javascript">
//Pagination part
$('.main-section').on('click', '.pagination > li > a', function (event) {
var page = $(this).text();
event.preventDefault();
if ($(this).attr('href') != '#') {
$("html, body").animate({scrollTop: 0}, "slow");
$.request('onFilterProduct', {
data: {page: page},
});
}
});
</script>
我的php块有这个
function onFilterProduct(){
$slug = $this->param('slug');
$search = Input('location');
$this['ads'] = Advert
::withCount(['ratings as rating' => function ($query) {
$query->select(DB::raw('COALESCE(avg(rating), 0)'));
}])
->whereHas('cats', function ($query) use ($slug){
$query->where('slug',$slug);
})->where('location', 'LIKE', "%{$search}%")
->orderBy('created_at','desc')->paginate(1)->appends(['location' => $search]);
return [
'#product-list' => $this->renderPartial('product-filter-partial')
];
}
一切正常,当我加载第一页时获得正确的页码,但是当我点击第二页时,它会重置所有内容并且分页不再适用于位置查询字符串。请问我该如何解决这个问题。
终于找到了一个解决方案,可以使用 javascript pushState api 更新页面 url 而无需重新加载
history.pushState(null, null, $(this).attr('href'));
所以我的 js 代码现在看起来像这样
<script type="text/javascript">
//Pagination part
$('.main-section').on('click', '.pagination > li > a', function (event) {
var page = $(this).text();
event.preventDefault();
if ($(this).attr('href') != '#') {
// Update the browser's address bar
history.pushState(null, null, $(this).attr('href'));
$("html, body").animate({scrollTop: 0}, "slow");
$.request('onFilterProduct', {
data: {page: page},
});
}
});
</script>
我知道当您添加 ->appends(['location' => $search])
之类的内容时会有疑问。当您使用分页时,它甚至会将搜索查询保存到下一页。现在我正在使用 ajax 进行分页,我有这个 js 代码
<script type="text/javascript">
//Pagination part
$('.main-section').on('click', '.pagination > li > a', function (event) {
var page = $(this).text();
event.preventDefault();
if ($(this).attr('href') != '#') {
$("html, body").animate({scrollTop: 0}, "slow");
$.request('onFilterProduct', {
data: {page: page},
});
}
});
</script>
我的php块有这个
function onFilterProduct(){
$slug = $this->param('slug');
$search = Input('location');
$this['ads'] = Advert
::withCount(['ratings as rating' => function ($query) {
$query->select(DB::raw('COALESCE(avg(rating), 0)'));
}])
->whereHas('cats', function ($query) use ($slug){
$query->where('slug',$slug);
})->where('location', 'LIKE', "%{$search}%")
->orderBy('created_at','desc')->paginate(1)->appends(['location' => $search]);
return [
'#product-list' => $this->renderPartial('product-filter-partial')
];
}
一切正常,当我加载第一页时获得正确的页码,但是当我点击第二页时,它会重置所有内容并且分页不再适用于位置查询字符串。请问我该如何解决这个问题。
终于找到了一个解决方案,可以使用 javascript pushState api 更新页面 url 而无需重新加载
history.pushState(null, null, $(this).attr('href'));
所以我的 js 代码现在看起来像这样
<script type="text/javascript">
//Pagination part
$('.main-section').on('click', '.pagination > li > a', function (event) {
var page = $(this).text();
event.preventDefault();
if ($(this).attr('href') != '#') {
// Update the browser's address bar
history.pushState(null, null, $(this).attr('href'));
$("html, body").animate({scrollTop: 0}, "slow");
$.request('onFilterProduct', {
data: {page: page},
});
}
});
</script>