我在 db.system.js 中有一个存储的 javascript 函数,调用它my_func
,它接受 2 个字符串数组作为参数。
我如何从 pymongo 调用它?例如调用
my_func(['a', 'b'], ['c', 'd'])
谢谢
你可以使用一些东西作为
...
database_connection = conn.my_database
# Here is the magic:
print database_connection.system_js.my_func(['a', 'b'], ['c', 'd'])
它只是工作!
这是system_js
属性的文档:http: //api.mongodb.org/python/current/api/pymongo/database.html#pymongo.database.Database.system_js