- 定义
db.system.js.insert({ _id : "TestConcat", value : function TestConcat(s1, s2){ return s1 + s2 } });
- 运行
db.eval('TestConcat("abc","123")');
- 结果
abc123
时间: 2024-11-06 11:37:25
db.system.js.insert({ _id : "TestConcat", value : function TestConcat(s1, s2){ return s1 + s2 } });
db.eval('TestConcat("abc","123")');
abc123