4

我目前正在将我的一个项目从 4.2 更新到 Laravel 5。我知道分页器类发生了很多变化,但我真的不知道为什么这不起作用。我在项目中的多个位置对 eloquent 模型调用 paginate() 并且一切都很好。

但是同一个项目有一个带有过滤器的配置文件搜索页面,所以我必须调用一个巨大的自定义 DB::table() 查询。之后,我想从结果中构建一个分页器对象。

$q = \DB:: HUGE QUERY HERE....

// Execute query
$results = $q->get();

// Get pagination information and slice the results.
$perPage = 20;
$total = count($results);
$start = (Paginator::resolveCurrentPage() - 1) * $perPage;
$sliced = array_slice($results, $start, $perPage);

// Eager load the relation.
$collection = Profile::hydrate($sliced);
$collection->load(['sports', 'info', 'profileImage']);

// Create a paginator instance.
$profiles = new Paginator($collection->all(), $total, $perPage);

return $profiles;

我的问题是调用$profiles->render()链接到我的项目根目录而不是当前页面后生成的链接。

示例:链接位于mysite.com/profiles但链接到mysite.com/?page=2而不是mysite.com/profiles?page=2

我的代码在 Laravel 4.2 中运行良好,我将其链接在下面以供参考:

有效的Laravel 4.2 代码:

$q = \DB:: HUGE QUERY HERE....

// Execute query
$results = $q->get();

// Get pagination information and slice the results.
$perPage = 20;
$total = count($results);
$start = (Paginator::getCurrentPage() - 1) * $perPage;
$sliced = array_slice($results, $start, $perPage);

// Eager load the relation.
$collection = Profile::hydrate($sliced);
$collection->load(['sports', 'info', 'profileImage']);

// Create a paginator instance.
$profiles = Paginator::make($collection->all(), $total, $perPage);

return $profiles;

欢迎任何帮助。谢谢!

4

2 回答 2

13

经过几个小时的工作,我终于解决了这个问题!

我发现您可以将路径传递给分页器。正如你所看到的,这可以通过在构建分页器对象时传递一个数组作为第五个参数来完成。该数组将覆盖您传递给它的任何选项。我们需要覆盖该path选项。我正在使用Paginator::resolveCurrentPath().

所以我的代码现在看起来像:

// Create a paginator instance.
$profiles = new Paginator($collection->all(), $total, $perPage, Paginator::resolveCurrentPage(), [
    'path' => Paginator::resolveCurrentPath()
]);

对于感兴趣的人,分页器构造函数如下所示:

__construct($items, $total, $perPage, $currentPage = null, array $options = [])

您需要手动传递它很奇怪,我认为这是一个错误。

于 2015-03-31T20:18:12.423 回答
1

如果这对你有用,我不会抱怨。我们对 ORM 和模型加载有不同的方法,但我希望这能给您一些见解。

初始网址

localhost/application-name/public/publishers/?page=1

控制器

class PublisherController extends Controller {
    public function index()
    {
        $publ = Publisher::paginate(5);
        $publ->setPath(''); //I just use custom Url and set path to ''
        return view('publisher-table', ['publishers'=>$publ]);
    }

看法

<div class="row">
{!! $publishers->render() !!}
</div>

结果网址

localhost/application-name/public/publishers?page=1

我相信不同的服务器配置和方法需要不同的方法。我,就我自己而言,我的开发服务器被仅按文件夹分隔的项目所污染。所以,这个解决方案就足够了。

有一次,我读到你可以通过设置DocumentRootLaravelpublic文件夹来解决这个问题。但是,没有必要为每个开发环境配置虚拟主机。

于 2015-06-05T04:36:49.173 回答