0
在nodecelar骨幹樣品的NodeJS,我有代碼:骨幹例如,Nodecelarr
exports.findById = function(req, res) {
var id = req.params.id;
console.log('Retrieving wine: ' + id);
db.collection('wines', function(err, collection) {
collection.findOne({'_id':new BSON.ObjectID(id)}, function(err, item) {
res.send(item);
});
});
};
我有錯誤:
TypeError: Cannot read property 'findOne' of undefined.
你能不能幫我請。謝謝。