Answer the question
In order to leave comments, you need to log in
How to make working sorting in SailsJS?
on the page I wanted to make a selection for display in descending order - from the identifier. ended up with code like this
index: function (req, res, next) {
Post.find()
.sort({
id: 'desc'
})
.exec(function (err, posts) {
if (err) return res.send(500);
res.view({
posts: posts
});
});
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question