M gowda
M gowda

Reputation: 203

In nodejs collection.find() is not fetching values from Mongodb collection.It returning nothing

app.get('/render', function(req, res) {
  MongoClient.connect(dburl, function(err, db) {
  if (err) throw err;
  var collection = db.collection('shopping_list');
  collection.find().toArray(function(err, result) {
    
    res.send({result :result});
  
  });
  db.close();
});
});
In nodejs collection.find() is not fetching values from Mongodb collection.It returning nothing In nodejs collection.find() is not fetching values from Mongodb collection.It returning nothing

Upvotes: 0

Views: 57

Answers (1)

Ravi Teja
Ravi Teja

Reputation: 659

exports.index = function(req, res) {
var queryObj = {};
UserModel.find(queryObj)
.exec(function(err, users) {
    if (!users) {
        console.log("users not found");
    }
    if (!err) {
        console.log("number of users",users.length);
    } else {
        console.log("err",err);
    }
});

};

Upvotes: 1

Related Questions