javascript - Add pages to the Anypic App Web of Parse.com -
on anypic-web on line #76, control limit of rendered pics this.photos.query.limit(8);
how can add next page next 8 items?
what should read?
from documentation (https://www.parse.com/docs/js_guide#queries-constraints), use skip
:
this.photos.query.limit(8).skip(8);
Comments
Post a Comment