问题
新来的小同事在做搜索后结果分页时,发现了很奇怪的bug,点击到第二页就没有搜索条件了,这个问题以前我也遇见过,既然又有人遇见就记录一下
解答
在laravel中如果要做搜索分页如下图
$lst = DB::table('users')
->join('trade_baseinfo','users.id','=','trade_baseinfo.user_id')
->select('users.*','trade_baseinfo.*')
->where('trade_baseinfo.contact_number','like',"%$mark%")
->orwhere('trade_baseinfo.company_name','like',"%$mark%")
->paginate(10);
把搜索的条件每页分出10个数据展示,并在模版中写上
{!! $lst->links('vendor.views.pages') !!}
就可以轻松的得到搜索后数据的分页
但是在这之中,会出现一个问题,当你点到分页后的第二页时会自动清空之前的搜索条件,就是说打不开第二页
这时我们要给$lst这个集合的属性path加上参数传到第二页上,如下图
$lst = DB::table('users')
->join('trade_baseinfo','users.id','=','trade_baseinfo.user_id')
->select('users.*','trade_baseinfo.*')
->where('trade_baseinfo.contact_number','like',"%$mark%")
->orwhere('trade_baseinfo.company_name','like',"%$mark%")
->paginate(10);
$url=url('admin/trade/lst');
$lst->withPath($url.'?table_search='.$mark);
重要的就是最后两行代码,用$lst->withPath
的方法把路径和参数传入page中,就能解决第二页会重置条件的bug