- 定义
db.system.js.insert({ _id : "TestConcat", value : function TestConcat(s1, s2){ return s1 + s2 } });
- 执行
db.eval('TestConcat("abc","123")');
- 结果
abc123
本文共 249 字,大约阅读时间需要 1 分钟。
db.system.js.insert({ _id : "TestConcat", value : function TestConcat(s1, s2){ return s1 + s2 } });
db.eval('TestConcat("abc","123")');
abc123
转载于:https://www.cnblogs.com/lytwajue/p/7159863.html