我在MongoDB中存储了一个函数,该函数连续执行了几个mongodb原子函数,所以我不必一直输入它们。
我已经忘记了我将这个功能命名为什么。
有没有人知道如何在MongoDB实例中检索已保存函数的列表?
答案 0 :(得分:1)
要查看服务器端已保存功能的列表,请尝试使用
> db.system.js.find();
The _id field holds the name of the function and is unique per database.
The value field holds the function definition
答案 1 :(得分:0)
db.system.js.find()应该为您提供完整的列表和源代码,只需将_id字段设置为获取名称。
http://docs.mongodb.org/manual/tutorial/store-javascript-function-on-server/