我有已经从服务器分页的 JSON 数据。我已经成功地显示了我的 vuetify 数据表中的项目。现在我想创建从服务器加载下一组或上一组数据的分页。无法在从服务器加载下一组数据的数据表分页中添加自定义函数。
{
"current_page": 1,
"data": [
{
"id": 1,
"contact_person": "person one",
"email": "person_one@gmail.com",
"phone": 1234567890,
"gst": "0987654321",
"user_id": 3,
"created_at": "2019-08-17 18:30:00",
"updated_at": "2019-08-17 18:55:32"
},
{
"id": 2,
"contact_person": "person two",
"email": "person_two@gmail.com",
"phone": 1234567891,
"gst": "0987654322",
"user_id": 3,
"created_at": "2019-08-17 18:30:00",
"updated_at": "2019-08-17 18:55:32"
}
],
"first_page_url": "http://localhost:8000/customer?page=1",
"from": 1,
"last_page": 3,
"last_page_url": "http://localhost:8000/customer?page=3",
"next_page_url": "http://localhost:8000/customer?page=2",
"path": "http://localhost:8000/customer",
"per_page": 2,
"prev_page_url": null,
"to": 2,
"total": 6
}
我希望在单击分页图标时执行“next_page_url”和“prev_page_url”。谢谢你的广告:)
原文由 Amit Biswas 发布,翻译遵循 CC BY-SA 4.0 许可协议
您需要提供数据表的
total-items
属性 - 它将与pagination.rowsPerPage
一起使用以计算总页数。然后,您需要处理@update:pagination
事件,其参数将是新的分页对象:在此事件处理程序中,您将通过 AJAX 获取指定的
page
,然后更新数据表的items
属性。例如: