mharris717 / ember-cli-pagination

Pagination Addon for Ember CLI
MIT License
272 stars 116 forks source link

How do you compute offset dynamically if you don't want to do it in the backend? #177

Open samtes opened 8 years ago

samtes commented 8 years ago

I want to pass query string values other than perPage (limit) or page with each request. For the initial request I can do it in the model method in the route. However, for all the subsequent requests how do I pass other queryParams with each request. For example offset or skip ...?

http://somedomain/someEndpoint?limit=10&page=1&offset=10