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

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -