mongodb中的乘法表示仅对字符串类型进行操作

问题描述 投票:0回答:2

我正在尝试将 mongodb 中的 2 个字段相乘。两者都是数字类型,但 mongodb 返回的是

$multiply only supports numeric types
。合集是:

{
        "_id" : ObjectId("55e07eb54acc499bb3daae6a"),
        "propertytype" : "Hotel",
        "name" : "Rude Lounge2",
        "costing" : {
                "vegperplate" : 350,
                "nonvegperplate" : 450,
                "flatcharge" : 20000
        },
        "capacity" : {
                "min" : 90,
                "max" : 200
        }
}
{
        "_id" : ObjectId("55e07ebe4acc499bb3daae6b"),
        "propertytype" : "Hotel",
        "name" : "Rude Lounge3",
        "costing" : {
                "vegperplate" : 350,
                "nonvegperplate" : 450,
                "flatcharge" : 20000
        },
        "capacity" : {
                "min" : 90,
                "max" : 200
        }
}

我的查询是:

> db.properties2.aggregate(
... { $project: {
...  "cost": {
... $multiply:["costing.vegperplate","capacity.min"]
...       }
... }
... })

错误堆栈是:

assert: command failed: {
        "errmsg" : "exception: $multiply only supports numeric types, not String",
        "code" : 16555,
        "ok" : 0
} : aggregate failed
Error: command failed: {
        "errmsg" : "exception: $multiply only supports numeric types, not String",
        "code" : 16555,
        "ok" : 0
} : aggregate failed
    at Error (<anonymous>)
    at doassert (src/mongo/shell/assert.js:11:14)
    at Function.assert.commandWorked (src/mongo/shell/assert.js:244:5)
    at DBCollection.aggregate (src/mongo/shell/collection.js:1149:12)
    at (shell):1:16
2015-08-29T00:13:39.173-0400 Error: command failed: {
        "errmsg" : "exception: $multiply only supports numeric types, not String",
        "code" : 16555,
        "ok" : 0
} : aggregate failed at src/mongo/shell/assert.js:13

有人说我哪里做错了吗?

mongodb mongodb-query aggregation-framework
2个回答
5
投票

您需要在字段名称前添加

$
符号,因为您的操作是在文档中的两个不同字段上进行的。

db.properties2.aggregate([
    { 
        "$project": {
            "cost": { "$multiply": [ "$costing.vegperplate", "$capacity.min" ]}
    }
])

1
投票

$multiply:[] 中指定的参数应该是 int。如果有一个字符串。将其转换为字符串

$multiply:['$quantity',{$toInt:'$product.prize'}]

toInt
将字符串参数转换为 int

© www.soinside.com 2019 - 2024. All rights reserved.