search

Home  >  Q&A  >  body text

mongoose - mongodb aggregate 找不到运算符

完全不明白

db.users.aggregate(
       [
         {
           $group : {
             _id: { $sum: 1 }
           }
         }
       ]
     )
Error: Printing Stack Trace
    at printStackTrace (src/mongo/shell/utils.js:37:15)
    at DBCollection.aggregate (src/mongo/shell/collection.js:897:9)
    at (shell):1:10
Fri Sep 19 18:51:23.623 aggregate failed: {
    "errmsg" : "exception: invalid operator '$sum'",
    "code" : 15999,
    "ok" : 0
黄舟黄舟2762 days ago650

reply all(1)I'll reply

  • 迷茫

    迷茫2017-04-24 09:13:18

    _id is used for GROUP. If you want to use $sum, you need to change the field name.

    http://docs.mongodb.org/manual/reference/operator/aggregation/sum/#grp._S_sum

    reply
    0
  • Cancelreply