Mongoose find returning odd object
问题 my current problem is with the db.collection.find() mongoose command. I'm relatively new to mongoose/mongodb, but I've gotten the hang of the concepts of it. Here is the test code I've been trying to run: mongoose.connect(url); function main() { var db = mongoose.connection; db.on('open', function() { db.collection('Tweet').find({id: 631460910368956400}, function (err, data){ console.log(data); }) /*var coll = db.collection('Tweet'); db.collection('Tweet').findOne({id: 631460910368956400}