How to return multiple Mongoose collections in one

2019-01-28 07:07发布

I am trying to generate a response that returns the same collection sorted by 3 different columns. Here's the code I currently have:

var findRoute = router.route("/find")
findRoute.get(function(req, res) {
  Box.find(function(err, boxes) {
    res.json(boxes)
  }).sort("-itemCount");
});

As you can see, we're making a single get request, querying for the Boxes, and then sorting them by itemCount at the end. This does not work for me because the request only returns a single JSON collection that is sorted by itemCount.

What can I do if I want to return two more collections sorted by, say, name and size properties -- all in the same request?

3条回答
Viruses.
2楼-- · 2019-01-28 07:42

Have you tried ?

Box.find().sort("-itemCount").exec(function(err, boxes) {
    res.json(boxes)
});

Also for sorting your results based on 2 or more fields you can use :

.sort({name: 1, size: -1})

Let me know if that helps.

查看更多
男人必须洒脱
3楼-- · 2019-01-28 08:02

If I understand well, you want something like that : return Several collections with mongodb

Tell me if that helps.

Bye.

查看更多
闹够了就滚
4楼-- · 2019-01-28 08:03

Crete an object to encapsulate the information and chain your find queries, like:

var findRoute = router.route("/find");
var json = {};

findRoute.get(function(req, res) {
  Box.find(function(err, boxes) {
    json.boxes = boxes;

    Collection2.find(function (error, coll2) {
      json.coll2 = coll2;

      Collection3.find(function (error, coll3) {
        json.coll3 = coll3;

        res.json(json);
      }).sort("-size");
    }).sort("-name");
  }).sort("-itemCount");
});

Just make sure to do the appropriate error checking.

This is kind of uggly and makes your code kind of difficult to read. Try to adapt this logic using modules like async or even promises (Q and bluebird are good examples).

查看更多
登录 后发表回答