Saya mencoba memilih dokumen berdasarkan id
Saya sudah mencoba:
collection.update({ "_id": { "$oid": + theidID } }
collection.update({ "_id": theidID }
collection.update({ "_id.$oid": theidID }}
Juga mencoba:
collection.update({ _id: new ObjectID(theidID ) }
Ini memberi saya kesalahan 500 ...
var mongo = require('mongodb')
var BSON = mongo.BSONPure;
var o_id = new BSON.ObjectID(theidID );
collection.update({ _id: o_id }
Tak satu pun dari ini berhasil. Bagaimana cara memilih menurut _id?
javascript
mongodb
node.js
Menandai
sumber
sumber
collection.find({"_id": ObjectId(theidID)})
harus bekerja.Jawaban:
var mongo = require('mongodb'); var o_id = new mongo.ObjectID(theidID); collection.update({'_id': o_id});
sumber
native_parser:false
- periksa balasan Raphael di bawah iniObjectID()
padarequire('mongodb')
dan bukan padarequire('mongodb').MongoClient
mongoClient.ObjectID is not a constructor
kesalahan.Ini pendekatan yang berhasil untuk saya.
var ObjectId = require('mongodb').ObjectID; var get_by_id = function(id, callback) { console.log("find by: "+ id); get_collection(function(collection) { collection.findOne({"_id": new ObjectId(id)}, function(err, doc) { callback(doc); }); }); }
sumber
sekarang Anda bisa menggunakan ini:
var ObjectID = require('mongodb').ObjectID; var o_id = new ObjectID("yourObjectIdString"); .... collection.update({'_id': o_id});
Anda dapat melihat dokumentasinya di sini
sumber
Dengan
native_parser:false
:var BSON = require('mongodb').BSONPure; var o_id = BSON.ObjectID.createFromHexString(theidID);
Dengan
native_parser:true
:var BSON = require('mongodb').BSONNative; var o_id = BSON.ObjectID.createFromHexString(theidID);
sumber
Saya baru saja menggunakan kode ini di aplikasi Node.js di file pengontrol, dan berfungsi:
var ObjectId = require('mongodb').ObjectId; ... User.findOne({_id:ObjectId("5abf2eaa1068113f1e")}) .exec(function(err,data){ // do stuff })
jangan lupa untuk menginstal "mongodb" sebelumnya, dan jika Anda menggunakan enkripsi password Anda dengan bcrypt dengan "presave", pastikan Anda tidak mengenkripsi password setelah setiap modifikasi record di DB.
sumber
/* get id */ const id = request.params.id; // string "5d88733be8e32529c8b21f11" /* set object id */ const ObjectId = require('mongodb').ObjectID; /* filter */ collection.update({ "_id": ObjectId(id) } )
sumber
Jawabannya tergantung pada jenis variabel yang Anda kirimkan sebagai id. Saya menarik id objek dengan melakukan kueri dan menyimpan account_id saya sebagai atribut ._id. Dengan menggunakan metode ini Anda cukup query menggunakan mongo id.
// begin account-manager.js var MongoDB = require('mongodb').Db; var dbPort = 27017; var dbHost = '127.0.0.1'; var dbName = 'sample_db'; db = new MongoDB(dbName, new Server(dbHost, dbPort, {auto_reconnect: true}), {w: 1}); var accounts = db.collection('accounts'); exports.getAccountById = function(id, callback) { accounts.findOne({_id: id}, function(e, res) { if (e) { callback(e) } else { callback(null, res) } }); } // end account-manager.js // my test file var AM = require('../app/server/modules/account-manager'); it("should find an account by id", function(done) { AM.getAllRecords(function(error, allRecords){ console.log(error,'error') if(error === null) { console.log(allRecords[0]._id) // console.log('error is null',"record one id", allRecords[0]._id) AM.getAccountById( allRecords[0]._id, function(e,response){ console.log(response,"response") if(response) { console.log("testing " + allRecords[0].name + " is equal to " + response.name) expect(response.name).toEqual(allRecords[0].name); done(); } } ) } })
});
sumber
Inilah yang berhasil bagi saya. Menggunakan mongoDB
const mongoDB = require('mongodb')
Kemudian di bagian bawah tempat saya membuat panggilan ekspres saya.
router.get('/users/:id', (req, res) => { const id = req.params.id; var o_id = new mongoDB.ObjectID(id); const usersCollection = database.collection('users'); usersCollection.findOne({ _id: o_id }) .then(userFound => { if (!userFound){ return res.status(404).end(); } // console.log(json(userFound)); return res.status(200).json(userFound) }) .catch(err => console.log(err)); });`
sumber
Jika Anda menggunakan Mongosee, Anda dapat menyederhanakan fungsinya
FindById:
ini ganti di mongodb:
"_id" : ObjectId("xyadsdd434434343"),
example: // find adventure by id and execute Adventure.findById('xyadsdd434434343', function (err, adventure) {});
https://mongoosejs.com/docs/api.html#model_Model.findById
sumber
Saya menggunakan
"mongodb": "^3.6.2"
versi klien dan server4.4.1
// where 1 is your document id const document = await db.collection(collection).findOne({ _id: '1' }) console.log(document)
Jika Anda ingin menyalin dan menempel, inilah yang Anda butuhkan.
const { MongoClient } = require('mongodb') const uri = '...' const mongoDb = '...' const options = {} ;(async () => { const client = new MongoClient(uri, options) await client.connect() const db = client.db(mongoDb) const document = await db.collection(collection).findOne({ _id: '1' }) console.log(document) )}()
sumber