nicklandgrebe / active-resource.js

ActiveResource.js - API resource relational mapping in JavaScript
https://active-resource.js.org
MIT License
133 stars 20 forks source link

Pagination helpers #16

Closed nicklandgrebe closed 7 years ago

nicklandgrebe commented 7 years ago

Stories

Implementation

Product.first(10)
.then(function(products) {
  if(products.hasNextPage()) {
    products.nextPage()
    .then(function(nextPage) { ... })
  }
});

Work