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.
我想在 RoboMongo 的 shell 中编写 db 脚本时加载lodash 。
我试过load('lodash.min.js')在我的 db 脚本中做,但 shell 看不到库。db 脚本和库位于同一目录中。
load('lodash.min.js')
我现在做的一种解决方法是设置加载库的绝对路径。
load('/absolute/path/to/the/library/');
为了找到shell的当前目录,只需pwd()在robo3t Shell上运行
pwd()
并使用路径来放置您的外部脚本,这将使您只需将脚本文件名放在load('script.js')而不是整个绝对路径中。
load('script.js')