MongoDB初学者加载js文件时出错

时间:2016-10-20 20:37:40

标签: mongodb

我是MongoDB的新手,我从头开始自学。

我试图通过CMD通过MongoDB运行js文件

js文件包含以下语句。

print ("Hostname:");
print ("\t"+hostname());
print ("Date:");
print ("\t"+Date());
db = connect ("localhost/admin");
print ("Admin Collections:");
printjson (db.getcollectionNames());

但是当我尝试以下操作文件时。

mongo shell_script.js

我收到以下错误,

[thread1] syntaxError: missing ; before statement :@(shell):1:1

请有人指出我正确的方向。

关心Rob

1 个答案:

答案 0 :(得分:0)

在您的代码中,getcollectionNames应为getCollectionNames