在Mongodb中更新时防止舍入

时间:2019-02-12 22:32:47

标签: mongodb

当我们执行以下行时,数字将四舍五入。有办法预防吗?

db.MyCollection.update({
'properties': 'XYZ'}, {
$set: {
    'coordinates':
    [-85.72394369099999, 38.36421357100005]
}}, { multi: true});

最终显示为集合中的以下内容:

[-85.723943691,      38.3642135710001]

0 个答案:

没有答案