Я читаю некоторые значения из mongodb, а затем у меня есть несколько вариантов, которые увеличивают цену.Есть 2 типа опций, один и несколько.Если все операции одинарные, все операции выполняются без сбоев.если несколько, когда я читаю значение (например, «1.3»), анализатор с плавающей запятой возвращает 1.4000001 код, который делает это следующим образом:
this.item.productPrice = parseFloat(this.item.productPrice) -
parseFloat(a.price);
и
this.item.productPrice = parseFloat(this.item.productPrice) + parseFloat(a.price);
с использованием отладчика наначало строки item.productPrice равно 1.3, но после синтаксического анализа становится 1.4000001 и добавляет a.price
полный кодовый блок
//this one takes the selection and adds it to selectedparams array
selected(ev: any) {
debugger;
const a = JSON.parse(ev);
if (a.multiple) {
if (Array.isArray(this.selectedparams[a.paramName])) {
const va = !a.value;
const index = this.objectinArray(this.selectedparams[a.paramName], {
option: a.option,
price: a.price,
value: va
});
if (index !== -1) {
this.item.productPrice = parseFloat(this.item.productPrice) - parseFloat(a.price);
this.selectedparams[a.paramName].splice(index, 1);
this.zone.run(() => {});
} else {
this.selectedparams[a.paramName].push({ option: a.option, price: a.price, value: a.value });
this.item.productPrice = parseFloat(this.item.productPrice) + parseFloat(a.price);
this.zone.run(() => {});
}
} else {
this.selectedparams[a.paramName] = [];
this.selectedparams[a.paramName].push({ option: a.option, price: a.price, value: a.value });
this.item.productPrice = this.item.productPrice + parseFloat(a.price);
console.log('hereeeeeeeeeeeeeeeee', this.item.productPrice);
this.zone.run(() => {});
}
} else {
this.selectedparams[a.paramName] = { selected: a.selected, price: a.price };
}
this.calcPrice();
}
//this one dows the calculation after adding
calcPrice() {
const keys = Object.keys(this.selectedparams);
console.log(this.item);
let newprice = this.item.productPrice;
keys.forEach(el => {
if (Array.isArray(this.selectedparams[el])) {
this.selectedparams[el].forEach((i: any) => {
newprice = newprice + parseFloat(i.price);
});
} else {
newprice = newprice + parseFloat(this.selectedparams[el].price);
}
});
this.showPrice = newprice;
}