$toDecimal(聚合)
定义
$toDecimal
将值转换为十进制。如果该值无法转换为十进制,则
$toDecimal
会出错。如果该值为空或缺失,$toDecimal
将返回空值。$toDecimal
通过以下语法实现:{ $toDecimal: <expression> } $toDecimal
采用任何有效的 表达式。$toDecimal
是以下$convert
表达式的简写:{ $convert: { input: <expression>, to: "decimal" } }
行为
下表列出了可转换为十进制值的输入类型:
输入类型 | 行为 |
---|---|
布尔 | Returns Decimal128("0") for false .Returns Decimal128("1") for true . |
double | 以十进制形式返回 double 值。 |
Decimal 数据类型 | 不操作。返回该十进制数。 |
整型 | 以十进制形式返回该整型值。 |
Long | 以十进制形式返回该长值。 |
字符串 | 以十进制形式返回该字符串的数值。 字符串值必须是以 10 为基数的数值(例如 无法转换不以 10 为基数的字符串值(例如 |
Date | 返回日期值对应的纪元起的毫秒数。 |
下表列出了转换为十进制值的部分示例:
例子 | 结果 |
---|---|
{$toDecimal: true} | Decimal128("1") |
{$toDecimal: false} | Decimal128("0") |
{$toDecimal: 2.5} | Decimal128("2.50000000000000") |
{$toDecimal: NumberInt(5)} | Decimal128("5") |
{$toDecimal: NumberLong(10000)} | Decimal128("10000") |
{$toDecimal: "-5.5"} | Decimal128("-5.5") |
{$toDecimal: ISODate("2018-03-27T05:04:47.890Z")} | Decimal128("1522127087890") |
例子
使用以下文档创建集合 orders
:
db.orders.insertMany( [ { _id: 1, item: "apple", qty: 5, price: 10 }, { _id: 2, item: "pie", qty: 10, price: NumberDecimal("20.0") }, { _id: 3, item: "ice cream", qty: 2, price: "4.99" }, { _id: 4, item: "almonds", qty: 5, price: 5 } ] )
orders
集合上的以下聚合操作会在计算总价之前将 price
转换为十进制数,将 qty
转换为整数:
// Define stage to add convertedPrice and convertedQty fields with the converted price and qty values priceQtyConversionStage = { $addFields: { convertedPrice: { $toDecimal: "$price" }, convertedQty: { $toInt: "$qty" }, } }; // Define stage to calculate total price by multiplying convertedPrice and convertedQty fields totalPriceCalculationStage = { $project: { item: 1, totalPrice: { $multiply: [ "$convertedPrice", "$convertedQty" ] } } }; db.orders.aggregate( [ priceQtyConversionStage, totalPriceCalculationStage ] )
该操作将返回以下文档:
{ _id: 1, item: 'apple', totalPrice: Decimal128("50") }, { _id: 2, item: 'pie', totalPrice: Decimal128("200.0") }, { _id: 3, item: 'ice cream', totalPrice: Decimal128("9.98") }, { _id: 4, item: 'almonds', totalPrice: Decimal128("25") }
注意
如果转换操作遇到错误,聚合操作会停止并抛出错误。要覆盖此行为,请改为使用 $convert
。