1
votes

I'm trying this code:

app.get('/caminhosRelevantes',function(req,res){

console.log(req.protocol+":/"+req.get('host'));
   var collection = "caminhos";
   var ObjectId = require('mongodb').ObjectID;
   collectionDriver.getCollection(collection, function(error, the_collection) {
        if (error) { 
res.end("<h1>Eerro</h1>");
        }
        else  
          the_collection.aggregate([
  { $match: { id_usuario: "54bef57a14b88ad70a8ab74e" } },
  { $group: { _id: { rua: "$rua", data: "$data" } } },
  { $group: { _id: "$_id.rua", data: { $push: "$_id.data" }, count: { $sum: 1 } } },
  { $match: { count: { $gt: 5 } } }
], function(error,doc) { //C
              if (error) res.end(error);
              else res.end(doc);
            });
   });
});

but I'm getting the following error:

/server/node_modules/mongodb/lib/mongodb/connection/base.js:242
        throw message;      
              ^
TypeError: first argument must be a string or Buffer
    at ServerResponse.OutgoingMessage.write (http.js:851:11)
    at ServerResponse.OutgoingMessage.end (http.js:985:16)
1
May be you are having problem like this : [ link ](stackoverflow.com/questions/10470133/…)Piyush Sagar

1 Answers

1
votes

I've tried res.status(200).send(doc) instead of res.end(doc); and it works great!