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.
我有一个可以在 mongo 命令行上运行的脚本,如下所示:
加载(“测试/my.js”)
脚本成功执行并返回 true。但是,我想在 mongo shell 中查看脚本的输出。是否可以 ?
谢谢。
对于输出,请使用 printjson。
好的。我想到了..
在我的脚本中,我需要将查询分配给一个变量并打印它。
例如:我需要在我的脚本中有这个。var c = db.messages.aggregate( ......... ]);
打印json(c);
现在,如果我像以前一样运行它,我会在屏幕上看到输出;