Questo può essere fatto più facilmente con il framework di aggregazione mongodb.
Utilizziamo $facet aggregazione per ottenere i dati impaginati insieme al numero totale di documenti.
Nel framework di aggregazione utilizziamo $lookup invece di manguste popolano. $lookup restituisce un array, per ottenere il primo elemento nell'array usiamo $ arrayElemAt operatore all'interno di $addFields .
Ed ecco il codice da applicare alla tua app:(La prima aggregazione $match non è necessaria qui, ma la inserisco nel caso in cui potresti averne bisogno in futuro)
exports.getPosts = async (req, res, next) => {
const perPage = 5;
const currPage = req.query.page ? parseInt(req.query.page) : 1;
const skip = (currPage - 1) * perPage;
try {
const result = await Post.aggregate([{
$match: {},
},
{
$sort: {
created_at: -1,
},
},
{
$lookup: {
from: "categories",
localField: "category",
foreignField: "_id",
as: "category",
},
},
{
$addFields: {
category: {
$arrayElemAt: ["$category", 0],
},
},
},
{
$facet: {
totalRecords: [{
$count: "total",
}, ],
data: [{
$skip: skip,
},
{
$limit: perPage,
},
],
},
},
]);
let postsCount = result[0].totalRecords[0].total;
const pageCount = Math.ceil(postsCount / perPage);
const pageDecrement = currPage > 1 ? 1 : 0;
const pageIncrement = currPage < pageCount ? 1 : 0;
const posts = result[0].data;
res.render("default/index", {
moment: moment,
layout: "default/layout",
website_name: "MEAN Blog",
page_heading: "XPress News",
page_subheading: "A MEAN Stack Blogging Application",
currPage,
posts,
pageDecrement,
pageIncrement,
});
} catch (err) {
console.log("Error: ", err);
res.status(500).send("something went wrong");
}
};
A proposito, nello schema del post, per i campi della data usi default: Date.now()
, questo farà sì che il valore della data sia sempre lo stesso valore, dovrebbe essere in questo formato:default: Date.now