使用 Vue.Js / Inertia.js 和 Laravel 对结果进行分页
Posted
技术标签:
【中文标题】使用 Vue.Js / Inertia.js 和 Laravel 对结果进行分页【英文标题】:Paginate results with Vue.Js / Inertia.js and Laravel 【发布时间】:2020-07-19 09:53:51 【问题描述】:我正在尝试在 Vue.Js 中对来自 Laravel 的数据进行分页。我也在使用 Inertia.js。
在我的 Laravel 控制器中,我有:
$data['participants'] = User::with('groups')->select('id', 'name')->paginate(2);
return inertia('Dashboard/Participants', $data);
这在 Vue 中连续输出了我的两个用户。我也期望链接对象用于分页。我在我的 Vue 道具中没有看到这个。
如果我检查我的 Vue 道具,我有以下对象:
participants:Object
current_page:1
data:Array[2]
first_page_url:"http://localhost:3000/dashboard/participants?page=1"
from:1
last_page:51
last_page_url:"http://localhost:3000/dashboard/participants?page=51"
next_page_url:"http://localhost:3000/dashboard/participants?page=2"
path:"http://localhost:3000/dashboard/participants"
per_page:2
prev_page_url:null
to:2
total:101
如果我:
dd($data['participants']->links());
在控制器中我可以看到:
Illuminate\View\View #316 ▼
#factory: Illuminate\View\Factory #310 ▶
#engine: Facade\Ignition\Views\Engines\CompilerEngine #328 ▶
#view: "pagination::bootstrap-4"
#data: array:2 [▶]
#path: "/Users/ejntaylor/Documents/Laravel/motional/vendor/laravel/framework/src/Illuminate/Pagination/resources/views/bootstrap-4.blade.php"
我一直在寻找PingCRM 的灵感,但没有运气 - 我在链接中引用了。帮助表示赞赏。
【问题讨论】:
这里有同样的问题。我与惯性无处可去。你找到解决办法了吗? 【参考方案1】:我遇到了类似的问题,并注意到基本的 links() 不适用于 Inertia 和 Vue,因此我制作了一个简单的 Vue 组件,在其中我使用从 Inertia 渲染方法获得的 Paginator 对象,它对我来说效果很好没有 ServiceProvider 解决方法。
我可以用
public function index()
return Inertia::render('MyUserList',[
'paginator' => User::paginate(10)
]);
我通常会这样做。
然后我将分页器对象绑定到我的 Vue 组件,这样我就可以利用它来创建一个基本的分页器组件。这样我就可以在任何我想要的地方使用和重复使用<Paginator :paginator="paginator" />
。
<template>
<Paginator :paginator="paginator" />
</template>
<script>
import Paginator from "@/Components/Paginator";
export default
props:
paginator: Object
,
</script>
我还创建了一个包,因此您可以根据需要通过 composer 将其拉入。 请参阅https://github.com/svnwa/InertiaVuePaginator 了解更多信息以及我创建的分页器组件的“组件”文件夹。 我希望它在未来对其他人有所帮助:)
【讨论】:
【参考方案2】:似乎默认的 Laravel 分页不适用于 Inertia.JS,因此您必须前往 AppServiceProvider.php 文件并添加以下内容才能使分页正常工作。
这取自PingCRM
protected function registerLengthAwarePaginator()
$this->app->bind(LengthAwarePaginator::class, function ($app, $values)
return new class(...array_values($values)) extends LengthAwarePaginator
public function only(...$attributes)
return $this->transform(function ($item) use ($attributes)
return $item->only($attributes);
);
public function transform($callback)
$this->items->transform($callback);
return $this;
public function toArray()
return [
'data' => $this->items->toArray(),
'links' => $this->links(),
];
public function links($view = null, $data = [])
$this->appends(Request::all());
$window = UrlWindow::make($this);
$elements = array_filter([
$window['first'],
is_array($window['slider']) ? '...' : null,
$window['slider'],
is_array($window['last']) ? '...' : null,
$window['last'],
]);
return Collection::make($elements)->flatMap(function ($item)
if (is_array($item))
return Collection::make($item)->map(function ($url, $page)
return [
'url' => $url,
'label' => $page,
'active' => $this->currentPage() === $page,
];
);
else
return [
[
'url' => null,
'label' => '...',
'active' => false,
],
];
)->prepend([
'url' => $this->previousPageUrl(),
'label' => 'Previous',
'active' => false,
])->push([
'url' => $this->nextPageUrl(),
'label' => 'Next',
'active' => false,
]);
;
);
【讨论】:
以上是关于使用 Vue.Js / Inertia.js 和 Laravel 对结果进行分页的主要内容,如果未能解决你的问题,请参考以下文章
如何在 vue.js 欢迎组件中使用引导程序而不是尾风 CSS
Vue.js 属性或方法“选项”未在实例上定义,但在渲染期间被引用
如何使用 Laravel 8、Inertia.js 和 Vue3 定义全局变量?
在 Inertia.js Vue 文件中访问 Laravel 的 .env 变量