2017-04-13 52 views

回答

1

你可以做到這一點與在命令的腳本行(例如) :

db.{collection}.find({"name":"Rajeev"}).forEach(function(document) { 
    delete document['']; 
    db.{collection}.save(document); 
}); 
相關問題