Freamee Posted November 13, 2019 Share Posted November 13, 2019 hello. I want to use command param, to deleteOne from the collection. But _id is '5dcc20c3770b9707143301fb' how can i call those by value? kincsLocations.deleteOne({ _id: value }, function (err, veh) { Link to comment Share on other sites More sharing options...
xshockz Posted November 13, 2019 Share Posted November 13, 2019 If you're not using mongoosejs (which automatically casts the string into ObjectId) then you'd have to cast the string into an ObjectId. const idToDelete = '5dcc20c3770b9707143301fb' // if not using mongoose collection.deleteOne({_id: new mongodb.ObjectID(idToDelete)}, callback}; // if using mongoose > 4 (deleteOne isn't supported on mongoose 4 or higher) collection.findByIdAndRemove({_id: idToDelete}, callback); references:https://docs.mongodb.com/manual/reference/method/db.collection.deleteOne/https://mongoosejs.com/docs/api.html#model_Model.findByIdAndRemove Link to comment Share on other sites More sharing options...
Freamee Posted November 13, 2019 Author Share Posted November 13, 2019 so i can not use these integeres yeah to delete one? Link to comment Share on other sites More sharing options...
xshockz Posted November 14, 2019 Share Posted November 14, 2019 The (1) and (2) are probably just the index of the array. You can't use that. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now