0
是否可以在Mongodb中使用Like命令獲取getCollectionNames?在MongoDB中使用Like命令獲取集合名稱?
類似的東西: db.getCollectionNames({ 「/ 虛擬 /」})
是否可以在Mongodb中使用Like命令獲取getCollectionNames?在MongoDB中使用Like命令獲取集合名稱?
類似的東西: db.getCollectionNames({ 「/ 虛擬 /」})
您可以使用db.getCollectionNames()
與Array.filter()
:
db.getCollectionNames().filter(function (collection) { return /dummy/.test(collection) })
什麼測試將在這裏工作>? –