CodeIgniter Forums
How To Generate Pagination Links With REST API? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: How To Generate Pagination Links With REST API? (/showthread.php?tid=78353)



How To Generate Pagination Links With REST API? - simonickalexs - 01-07-2021

Any idea how to make that happen? Like:
Code:
[
"data": "..........",
"first": "link-of-first-result",
"previous": "link-of-previous-result",
"next": "link-of-next-result",
"total": 20,
"last": "link-of-last-result"
]

Thank you.


RE: How To Generate Pagination Links With REST API? - includebeer - 01-09-2021

Use functions like $pager->getNextPage() to generate the URLs.
See http://codeigniter.com/user_guide/libraries/pagination.html