MCPcopy
hub / github.com/gofiber/fiber / NextPageURL

Method NextPageURL

middleware/paginate/page_info.go:91–93  ·  view source on GitHub ↗

NextPageURL returns the URL for the next page.

(baseURL string)

Source from the content-addressed store, hash-verified

89
90// NextPageURL returns the URL for the next page.
91func (p *PageInfo) NextPageURL(baseURL string) string {
92 return p.NextPageURLWithKeys(baseURL, "page", "limit")
93}
94
95// PreviousPageURLWithKeys returns the URL for the previous page using custom query keys.
96// Returns empty string if on page 1.

Calls 1

NextPageURLWithKeysMethod · 0.95