如何在MongoDB中返回零分数的浮点值?

时间:2016-07-04 13:58:28

标签: mongodb zero fractions

我正在尝试从零分数中检索 MongoDB 的浮点值。但它并没有像我期望的那样发挥作用。

即。我插入了一个doc:
db.collection.insert({_ id:1,floatVal:10.0})

检索它时

给出:

{    
    "_id": 1,    
    "floatVal": 10    
}    

而我希望结果为:

{    
    "_id": 1,    
    "floatVal" : 10.0    
}

0 个答案:

没有答案