$scope.AddRecord = [];
var item = { 'budget_item_id': $scope.item_id, 'budget_item_discription': $scope.item_discription, 'budget_item_quantity': $scope.item_quantity, 'budget_item_unit': $scope.item_unit, 'budget_item_rate': $scope.item_rate, 'budget_item_discount': $scope.item_discount };
$scope.AddRecord.push(item);
I'm curious about how to transmit a large number of records, exceeding 20 in total, from my AngularJS array to the server. Can someone guide me on achieving this task effectively?
In case I store more than 30 records within an AngularJS array, what would be the best approach to send this array with all its contents to the server for further processing? Any suggestions or solutions will be highly appreciated.