我的laravel项目我正在使用laravel的分页。并通过ajax调用,但现在我想添加排序搜索和其他东西。所以我想要我的网址http://localhost:8000/test/sites?page=2&sort=name&order=asc 但是我得到了像http://localhost:8000/test/sites#?page=2这样的网址,所以我怎样才能删除#la来自laravel caode。
$sites = DB::table('to_jobs')
->select(array(
'to_jobs.rec_id',
'to_jobs.contarct_code',
'to_jobs.job_num',
'to_sites.site_name',
'to_sites.postcode',
'to_sites.site_id'
))
->leftjoin('to_sites', 'to_jobs.fk_site_id', '=', 'to_sites.site_id')
/* ->join(DB::raw('(SELECT rec_id FROM to_jobs LIMIT 299990, 10) AS t'), function($join) {
$join->on('t.rec_id', '=', 'to_jobs.rec_id');
})*/
->paginate(10);
if (Request::ajax()) {
return Response::json(View('sites/site_data',compact('sites'),compact('user_data'))->render());
}
我是否需要更改render()。
答案 0 :(得分:0)
$(document).ready(function() {
$(document).on('click', '.pagination a', function (e) {
getPagePosts($(this).attr('href').split('page=')[1]);
e.preventDefault();
});
$(document).on('click', '.sorting', function (e) {
getSortPosts($('.pagination .active span').html(),$(this).attr('aria-label'),$(this).attr('aria-sort'));
e.preventDefault();
});
});
function getPagePosts(page) {
$.ajax({
url : '?page=' + page ,
dataType: 'json',
}).done(function (data) {
$('.posts').html(data);
location.hash= '?page=' + page ;
}).fail(function () {
alert('Posts could not be loaded.');
});
}
谢谢我在location.hash找到了它。但最近我知道,如果我删除.hash .can你可以解释为什么它刷新pahe如果哈希没有添加,如果添加,然后不刷新页面
答案 1 :(得分:0)
您可以从脚本中删除给定行。
`location.hash= '?page=' + page;`