我已将 MongoDB 集合命名为“版本”。现在输入以下命令时:
db.version.find()
我得到以下回复:
Sat Oct 05 23:22:30.943 TypeError: Object function (){
return this.serverBuildInfo().version;
} has no method 'find'
我可以使用以下方法绕过这个问题:
db.getCollection("version").find()
我的问题:我真的很想使用名称“版本”并且可以使用 db.getCollection(...) 命令,但还有其他含义吗?名为“版本”的集合还会产生哪些其他问题?