Das Problem ist, dass toFixed
gibt einen String
zurück , keine Number
. Dann aktualisieren Sie das Dokument einfach mit einem neuen und anderen String
.
Beispiel aus Mongo Shell:
> number = 2.3431
2.3431
> number.toFixed(2)
2.34
> typeof number.toFixed(2)
string
Wenn Sie eine Zahl mit 2 Dezimalstellen wollen, müssen Sie sie erneut parsen mit etwas wie:
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