Freamee Posted November 13, 2019 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) {
xshockz Posted November 13, 2019 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
Freamee Posted November 13, 2019 Author Posted November 13, 2019 so i can not use these integeres yeah to delete one?
xshockz Posted November 14, 2019 Posted November 14, 2019 The (1) and (2) are probably just the index of the array. You can't use that.
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