Ich versuche, ein Dokument anhand seiner ID auszuwählen
Ich habe es versucht:
collection.update({ "_id": { "$oid": + theidID } }
collection.update({ "_id": theidID }
collection.update({ "_id.$oid": theidID }}
Auch versucht:
collection.update({ _id: new ObjectID(theidID ) }
Dies gibt mir einen Fehler 500 ...
var mongo = require('mongodb')
var BSON = mongo.BSONPure;
var o_id = new BSON.ObjectID(theidID );
collection.update({ _id: o_id }
Keine dieser Arbeiten. Wie wähle ich mit _id aus?
collection.find({"_id": ObjectId(theidID)})
sollte arbeiten.