Giter Club home page Giter Club logo

Comments (2)

santiq avatar santiq commented on July 21, 2024 4

Edit December 4 2020:

Here is a blog post that I wrote with detailed information about it

Pagination in nodejs with mongo

Hello!

Start by accepting (and sending) these new query parameters on your API skip and limit

limit is the page size you want, and skip is to get the page you want.

For example, you want 20 elements per page, you have to call the API like this:

First Page

axios.get(`myapi.com/api/users?limit=20&skip=0`

Second page

axios.get(`myapi.com/api/users?limit=20&skip=20`)

Just send on skip the current page number minus 1 times page size

axios.get(`myapi.com/api/users?limit=${PageSize}&skip=${ (CurrentPage-1) * PageSize }`)

Now, back on the server side

route.get('/api/users', (req, res)=> {
  const limit = parseInt(req.query.limit);
  const skip = parseInt(req.query.skip);

  MyMongooseModel.find({  }).skip(skip).limit(limit).exec()

})

from bulletproof-nodejs.

ijhar8 avatar ijhar8 commented on July 21, 2024

i have made a helper function for pagination and search filter with sorting ....

const listData = async (doc, filter) => {

let { page = 0, limit = 10, sort = 1, sortby = `createdAt`, where = {} } = filter

const BOOLENTYPE = ['isDeleted']
/*search filters */
let search = {}
for (const cloumn in where) {
	if (where.hasOwnProperty(cloumn) && where[cloumn]) {

		if (BOOLENTYPE.includes(cloumn) && typeof where[cloumn] === Boolean)
			search[cloumn] = where[cloumn];
		else
			search[cloumn] = { '$regex': where[cloumn], '$options': 'i' }


	}
}

/*code for pagination start */
limit = parseInt(limit)
page = parseInt(page)
page = limit * (page - 1)
page = page < 1 ? 0 : page//negative values can break skip

let data = []
try {
	data = await doc.find(search)    // find all users with filter
		.skip(page)                  // skip the first n items 
		.limit(limit)                // limit to n items
		.sort({ [sortby]: sort })    // sort asc/dsc by createdAt


	let totalCount = await doc.countDocuments(search)
	let totalPages = Math.ceil(totalCount / limit)

	return {
		data: data,
		pages: totalPages,
		totalCount,
		success: true,
		errors: [],
		message: ""
	};

} catch (error) {
	// console.log(error)
	return {
		success: false,
		message: error.toString(),
		description: `error while fetching data please check data and data type`
	}
}

}
module.exports = { listData }

from bulletproof-nodejs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.