ใน MongoDB 3.2 และใหม่กว่าMongo().getDBNames()
ในmongo
เชลล์จะแสดงรายการชื่อฐานข้อมูลในเซิร์ฟเวอร์:
> Mongo().getDBNames()
[ "local", "test", "test2", "test3" ]
> show dbs
local 0.000GB
test 0.000GB
test2 0.000GB
test3 0.000GB
forEach()
ห่วงมากกว่าอาร์เรย์แล้วจะเรียกdropDatabase()
ว่าจะลดลงทุกฐานข้อมูลที่ระบุไว้ คุณสามารถเลือกที่จะข้ามฐานข้อมูลสำคัญบางอย่างที่คุณไม่ต้องการทิ้ง ตัวอย่างเช่น:
Mongo().getDBNames().forEach(function(x) {
// Loop through all database names
if (['admin', 'config', 'local'].indexOf(x) < 0) {
// Drop if database is not admin, config, or local
Mongo().getDB(x).dropDatabase();
}
})
ตัวอย่างการเรียกใช้:
> show dbs
admin 0.000GB
config 0.000GB
local 0.000GB
test 0.000GB
test2 0.000GB
test3 0.000GB
> Mongo().getDBNames().forEach(function(x) {
... if (['admin', 'config', 'local'].indexOf(x) < 0) {
... Mongo().getDB(x).dropDatabase();
... }
... })
> show dbs
admin 0.000GB
config 0.000GB
local 0.000GB