在MongoDB控制檯中,如何通過id刪除記錄?這裏是我的收藏:在MongoDB控制檯中通過_id刪除
[
{
"_id" : { "$oid" : "4d512b45cc9374271b02ec4f" },
"name" : "Gazza"
},
{
"_id" : { "$oid" : "4d513345cc9374271b02ec6c" },
"name" : "Dave",
"adminOf" : { },
"email" : "[email protected]"
}
]
這裏是不工作,我已經試過了命令:
db.test_users.remove({"_id":{"$oid":new ObjectId("4d512b45cc9374271b02ec4f")}});
db.test_users.remove({"_id":{"$oid":"4d513345cc9374271b02ec6c"}});
db.test_users.remove({"_id":"4d512b45cc9374271b02ec4f"});
db.test_users.remove({"_id":new ObjectId("4d512b45cc9374271b02ec4f")});
的名字刪除工作:
db.test_users.remove({"name":"Gazza"});
這是在瀏覽器外殼在mongodb.org如果這有什麼區別
謝謝
你應該考慮給別人答案。 – nottinhill 2014-08-22 14:32:50
你真的應該給別人答案。我建議Nic Cottrell – 2015-06-03 22:05:06
沒有任何解決方案爲我工作,直到我添加了一個回調:db.test_users.remove({「_id」:'4d512b45cc9374271b02ec4f'},function(err,data){}); – rttmax 2016-06-13 14:45:56