Тёмный

#79 Pagination | Using MongoDB with Express| A Complete NODE JS Course 

procademy
Подписаться 56 тыс.
Просмотров 9 тыс.
50% 1

Опубликовано:

 

14 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 12   
@kurikodudewe2734
@kurikodudewe2734 11 месяцев назад
you are the best teacher sir you explain it clearly with good example
@bmsos
@bmsos 10 месяцев назад
Hello, from minute 06:42 you can see that page 1's first doc is the movie Divergent, and then when you switch to page 2 the same movie shows up. The same thing is happening to me. Because of this some movies are not shown in any of the pages. Any solution? Thank you in advance and congratulations for this course.
@bmsos
@bmsos 10 месяцев назад
Ok I figured it out. Found this on the internet: "We recommend always using limit() with sort(). If you don't specify sort(), the MongoDB server doesn't guarantee you'll get the results back in any particular order." Since we were setting a default sorting by -createdAt, and that property had the same value in all docs (since they were all imported at the same time from the json file), the sorting wasn't giving any effective order to the list. Changed the default sort to '-name' and it worked perfectly.
@muneerhussain490
@muneerhussain490 6 месяцев назад
@@bmsos It was happening with me too and thank you for the solution
@DuyHoang-ul7lg
@DuyHoang-ul7lg 6 месяцев назад
thank you for the solution
@anshulrajput6316
@anshulrajput6316 5 месяцев назад
Using pagination will break the filter method as it will modify the query at the end. Thus, in Postman, we will obtain all movie lists when filtering as defined by const limit = (entered limit is empty when filtering) || 10 .
@AjayCoding
@AjayCoding Год назад
@rishiraj2548
@rishiraj2548 Год назад
Thanks
@soundarTech
@soundarTech Год назад
jonas copy paste !!!!!!!!!!!!!!! 🥲🥲🥲🥲
@anuragh3
@anuragh3 4 месяца назад
the complete code const excludeFields = ['sort', 'page', 'limit', 'fields'] const queryObj = { ...req.query } excludeFields.forEach((el) => delete queryObj[el]) //Advance Filtering (greater than/ less than/ greater than equal to/ less than equal to) let queryStr = JSON.stringify(queryObj) const regex = /\b(gte|gt|lte|lt)\b/g queryStr = queryStr.replace(regex, (match) => `$${match}`) const queryObj1 = JSON.parse(queryStr) //Sorting with one or more conditions let query = Movie.find(queryObj1) req.query.sort ? query.sort(req.query.sort.split(',').join(' ')) : query.sort('-name') //Limiting Fields req.query.fields ? query.select(req.query.fields.split(',').join(' ')) : query.select('-__v') //Pagination const page = +req.query.page || 1 const limit = +req.query.limit || 5 const skip = (page - 1) * limit query = query.skip(skip).limit(limit) if (req.query.page) { const moviesCount = await Movie.countDocuments() if (skip >= moviesCount) throw new Error(' There are no records to display!!') } const movies = await query
@sachinsridharan99
@sachinsridharan99 17 дней назад
delete querryObj.page; delete querryObj.limit; delete querryObj.sort delete querryObj.fields console.log(querryObj); let query = Movie.find(querryObj); add this if pagination is not working
Далее
CRUD API Tutorial - Node, Express, MongoDB
1:33:14
Просмотров 262 тыс.
РЫБКА С ПИВОМ
00:39
Просмотров 626 тыс.
НЮША РОЖАЕТ?
00:17
Просмотров 1,1 млн
Create A Paginated API With Node.js - Complete Tutorial
23:21
Easy Pagination With MongoDB & React.js
17:18
Просмотров 10 тыс.
CRUD REST API using Node | Express | MongoDB
52:35
Просмотров 381 тыс.