MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

MongoDB converte il tipo di stringa in tipo float

Il problema è che toFixed restituisce una String , non un Number . Quindi stai semplicemente aggiornando il documento con una nuova e diversa String .

Esempio da Mongo Shell:

> number = 2.3431
2.3431
> number.toFixed(2)
2.34
> typeof number.toFixed(2)
string

Se vuoi un numero di 2 decimali devi analizzarlo di nuovo con qualcosa come:

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