madhums / node-express-mongoose-demo

A simple demo app using node and mongodb for beginners (with docker)
https://nodejs-express-demo.fly.dev
MIT License
5.12k stars 1.38k forks source link

Pagination shows but not working #149

Closed sunkant closed 8 years ago

sunkant commented 8 years ago

The pagination shows correct on the first page with the pages index in the bottom, but when I click the "2" nd page index, it does not successfully jump there.

Is it supposed like this?

panzhangwang commented 8 years ago

Looks like, req.params.page becomes undefined. Try req.query.page.

sunkant commented 8 years ago

Thanks! Will try it out.