Recently, I started working with AngularJS and encountered an issue that I can't seem to resolve. Despite trying several solutions from different sources, none of them have been successful.
Within my code, I have an array assigned to $scope.data_params.
https://i.sstatic.net/H18tJ.jpg
Below is the snippet of my HTML code:
<tr ng-repeat="item in data_params">
<td>{{item.name}}</td>
Here is the relevant JavaScript code:
$scope.data_params.push(result_params.dealers);
console.log($scope.data_params);
If anyone has any insights on what might be causing the issue, please let me know. Thank you!