問題は、toFixed
String
を返します 、Number
ではありません 。次に、新しい異なるString
でドキュメントを更新するだけです。 。
Mongo Shellの例:
> number = 2.3431
2.3431
> number.toFixed(2)
2.34
> typeof number.toFixed(2)
string
小数第2位の数値が必要な場合は、次のように再度解析する必要があります。
db.MyCollection.find({"ProjectID" : 44, "Cost": {$exists: true}}).forEach(function(doc){
if(doc.Cost.length > 0){
var newCost = doc.Cost.replace(/,/g, '').replace(/\$/g, '');
var costString = parseFloat(newCost).toFixed(2);
doc.Cost = parseFloat(costString);
db.MyCollection.save(doc);
} // End of If Condition
}) // End of foreach