我的分页存在问题。在第一页中,分页链接显示完美,但在下一页中没有。
业务逻辑:在ListsController上显示方法,显示该列表的一组订阅者,对结果进行分页。
控制器:
public function show($id)
{
$page = Input::get('page', 1);
$perPage = 5;
$pagiData = $this->subscriber->byList($id, $page, $perPage);
$subscribers = Paginator::make($pagiData->items, $pagiData->totalItems, $perPage);
return View::make('subscribers.index', compact('subscribers'))->with('list_id', $id);
}
存储库
public function byList($list_id, $page = 1, $limit = 10)
{
$result = new \StdClass;
$result->page = $page;
$result->limit = $limit;
$result->totalItems = 0;
$result->items = array();
$query = $this->subscriber->where('list_id', $list_id)
->orderBy('created_at', 'desc');
$subscribers = $query->skip( $limit * ($page - 1) )
->take($limit)
->get();
$result->totalItems = $query->count();
$result->items = $subscribers->all();
return $result;
}
查看:
<table id="main">
<thead>
<tr>
<th>E-mail</th>
<th>Subscrito el:</th>
<th></th>
</tr>
</thead>
<tbody>
@foreach($subscribers as $item)
<tr>
<td> {{ $item->email }}</td>
<td>{{ $item->created_at }} </td>
<td>
{{ Form::open(['url' => 'subscribers/'. $item->id, 'method' => 'get']) }}
<button>
Editar
</button>
{{ Form::close() }}
</td>
</tr>
@endforeach
</tbody>
</table>
{{ $subscribers->links() }}
在第一页中正常工作,但分页链接在其他页面中消失了......
例如:
domain.com/lists/10 //分页确定
domain.com/lists/10?page=1 //分页确定
domain.com/lists/10?page=2 //分页消失
:(
有任何线索吗?
解决方案:
嗯......我的错误出现在我的Repository类中:
原件:
$result->totalItems = $query->count();
修正:
$result->totalItems = $this->subscriber->where('list_id', $list_id)->count();
现在正在努力。感谢@ sam-sullivan关于转储变量的评论。
答案 0 :(得分:1)
这就是问题:
在我的存储库类中:
$result->totalItems = $query->count();
$result->items = $subscribers->all();
但是,正确的方法是:
$result->totalItems = $this->subscriber->where('list_id', $list_id)->count();;
$result->items = $subscribers->all();
我必须在我的订阅者模型对象中应用where子句,然后计算结果...由于某些原因,在查询对象中使用count方法不会以相同的方式工作。现在在我请求的每个页面中,totalItems参数都填充了数据。