Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的猫鼬脚本中,我写道:
mongoose.connect('mongodb://localhost/mydb');
但是目前mydbMongo中没有数据库。mydb如果它不存在,这会创建吗?
mydb
如果数据库不存在,该命令mongoose.connect('mongodb://localhost/mydb');确实会创建数据库。mydb
它还将创建您在应用程序中使用的任何集合,如果它们尚不以类似的方式存在。
在做圆顶实验时,我发现,
如果不存在数据库,则创建新数据库