2番目のパラメーターは、フィールドを選択するためのものです。 3番目のパラメータにオプションを追加する必要があります:
posts.find({'creator.user_id': req.params.user_id}, null, {sort: {'_id': -1}}, function(err,userpost) {
if(err)
res.send(err);
res.json(userpost);
});
または、sort()
を使用することもできます 機能:
posts.find({'creator.user_id': req.params.user_id}).sort({'_id': -1}).exec(function(err,userpost) {
if(err)
res.send(err);
res.json(userpost);
});
その他の例は、ドキュメント にあります。 。