6.6. 使用搜索分页控制
您可以使用 per_page
和 page
分页参数来限制 API 搜索查询返回的搜索结果。per_
参数指定每个页面的结果数,page 参数指定根据 page
per_page
参数计算的页面,以返回。
当您没有指定任何分页参数时,要返回的默认项目数量被设置为 1000,但 per_page
值的默认值是 20,当您指定 page
参数时应用它。
列出内容视图
本例在页面中返回 Content Views 列表。列表中为每个页面包含 10 个键,并返回第三个页面。
请求示例:
$ curl --request GET --user My_User_Name:My_Password \ https://satellite.example.com/katello/api/content_views?per_page=10&page=3
列出激活码
本例返回 ID 为 1
的机构的激活码列表。列表中包含每个页面 30 个键,并返回第二个页面。
请求示例:
$ curl --request GET --user My_User_Name:My_Password \ https://satellite.example.com/katello/api/activation_keys?organization_id=1&per_page=30&page=2
返回多个页面
您可以使用 for
循环结构来获取多个结果页面。
这个示例将第 1 页的 Content Views 的 3 页返回,每个页为 5 个结果:
$ for i in seq 1 3
; do \
curl --request GET --user My_User_Name:My_Password \
https://satellite.example.com/katello/api/content_views?per_page=5&page=$i; \
done