Silverstripe restfulapi插件中的分页

时间:2019-06-24 10:18:45

标签: silverstripe silverstripe-4

我尝试使用Silverstripe Restfulapi,并且需要在Json末尾进行分页,如下所示:

first_page_url: "http://localhost/pointofsale/api/product/all?page=1",
from: 5,
last_page: 500,
last_page_url: "http://localhost/pointofsale/api/product/all?page=500",
next_page_url: "http://localhost/pointofsale/api/product/all?page=4",
path: "http://localhost/pointofsale/api/product/all",
per_page: "2",
prev_page_url: "http://localhost/pointofsale/api/product/all?page=2",
to: 6,
total: 1000

如何为分页配置此模块?

0 个答案:

没有答案