After Pushing Objects Into Array, Every Object In The Array Has The Same Value
I am having an issue with this function. When I am pushing objects into the array it is OK, but when I am retrieving stored objects I have the same value in every object. function
Solution 1:
You need to move productDetails initialization inside if loop. Here is the code.
function saveDetails() {
var details = [];
var id = $('#ddlDeliveryBoy option:selected').val();
var count = $('#tbCustomer tbody tr').length;
for (var index = 0; index < count; index++) {
var tr = $('#tbCustomer tbody tr')[index];
var countTD = $(tr).children('td').length - 4;
for (var j = 3; j < (countTD + 4); j++) {
var td = $(tr).children('td')[j];
var txt = $(td).find('input[type="text"]');
if ($.isNumeric(txt.val())) {
let productDetails = {};
productDetails.CustomerID = $(tr).data('id');
productDetails.ProductID = $(td).data('id');
productDetails.Quantity = parseFloat(txt.val()).toFixed(2);
details.push(productDetails);
}
}
}
console.log(details);
}
Post a Comment for "After Pushing Objects Into Array, Every Object In The Array Has The Same Value"