我正在尝试
1.创建数据库
use testdb switched to db testdb
2。创建集合
testdb.createCollection(testcollection)
我收到以下错误:
2015-05-12T11:21:19.619-0700 E QUERY ReferenceError: testdb is not defined
at (shell):1:1
答案 0 :(得分:5)
正确的方法是使用db.createCollection()
方法,您的代码会失败,因为x++;
不是您通话testdb
中的mongodb对象。请尝试以下方法:
testdb.createCollection(testcollection)