Answers for "mongodb create and get id"

Go
-1

mongodb js get id of inserted

collection.insert(objToInsert, function (err, result){
    if(err)console.log(err);
    else {
        console.log(result["ops"][0]["_id"]);
        // The above statement will output the id of the 
        // inserted object
       }
});
Posted by: Guest on May-14-2020

Browse Popular Code Answers by Language