码迷,mamicode.com
首页 > 数据库 > 详细

MongoDB 自己定义函数

时间:2017-07-13 13:31:38      阅读:195      评论:0      收藏:0      [点我收藏+]

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

  • 定义
    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   

原文地址:http://www.cnblogs.com/lytwajue/p/7159863.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!