可能是个愚蠢的问题,用 Mongo Shell 做实验。
我想这样做:
matt@linuxvm:~/mongodb-linux-i686-1.2.3/bin$ ./mongo
MongoDB shell version: 1.2.3
url: test
connecting to: test
Thu Feb 25 20:57:47 connection accepted from 127.0.0.1:37987 #3
type "help" for help
> function test() { debug.log("hello") }
> test()
Thu Feb 25 20:58:06 JS Error: ReferenceError: debug is not defined (shell):0
换句话说,在从 Mongoshell 中计算 JS 函数时,如何向控制台输出。我打算一些管理/填充脚本,我想输出一些精确的信息。
我试过 console. log,debug. log,记录那些显而易见的. 。