当前位置:Gxlcms > 数据库问题 > MongoDB 自己定义函数

MongoDB 自己定义函数

时间:2021-07-01 10:21:17 帮助过:30人阅读

  • 定义
    db.system.js.insert({
            _id : "TestConcat", 
          value : function TestConcat(s1, s2){
                       return s1 + s2
                  }
       });
  • 执行
    db.eval('TestConcat("abc","123")');
  • 结果
    abc123

MongoDB 自己定义函数

标签:test   自己   file   pre   name   turn   mon   class   script   

人气教程排行