Tham số thứ hai dành cho các trường để chọn. Bạn cần thêm các tùy chọn cho tham số thứ ba:
posts.find({'creator.user_id': req.params.user_id}, null, {sort: {'_id': -1}}, function(err,userpost) {
if(err)
res.send(err);
res.json(userpost);
});
Ngoài ra, bạn có thể sử dụng sort()
chức năng:
posts.find({'creator.user_id': req.params.user_id}).sort({'_id': -1}).exec(function(err,userpost) {
if(err)
res.send(err);
res.json(userpost);
});
Bạn có thể tìm thêm ví dụ trong tài liệu .