0

这就是我的控制器中的内容

$projects=Project::where_sup_id($user_id)->get();
   $total=count($projects);
   $per_page=3;
  $projects = Paginator::make($projects, $total, $per_page);
  return View::make('project.index')->with('projects',$projects);

这在我看来

 @foreach ($projects->results as $project) 

      {{$project->title}}

 @endforeach


{{$projects->links();}}

但是当我在浏览器中查看它时,它会显示所有页面中的所有行......链接显示完美!你认为是什么问题?请帮忙!提前谢谢你!

4

1 回答 1

3

您正在计算所有行,但根本不使用limit,Laravel fluent 查询构建器具有用于此目的skip()take()方法。

顺便说一句,您不需要手动对其进行分页。Laravel 使用 paginate()方法自动进行分页。

这样做:

$projects = Project::where_sup_id($user_id)->paginate(3); // 3 means records per page
return View::make('project.index')->with('projects', $projects);

你正在view正确地工作。

于 2013-02-15T09:01:36.610 回答