I am having an object like this $scope.releases = [{name : "All Stage",active:true}];
I need to append more data to it
[
{name : "Development",active:false},
{name : "Production",active:false},
{name : "Staging",active:false}
]
So the final data should be like this
[
{name : "All Stage",active:true}
{name : "Development",active:false},
{name : "Production",active:false},
{name : "Staging",active:false}
]
I tried the following code. But it is not appending.
app.controller('MainCtrl', function($scope) {
// I am having an object like this
$scope.releases = [{name : "All Stage",active:true}];
// I need to appned some more data to it
$scope.releases = [
{name : "Development",active:false},
{name : "Production",active:false},
{name : "Staging",active:false}
]
});
Pluker Link : http://plnkr.co/edit/gist:3510140
$scope.releases = [{name : "All Stage",active:true}];
// Concatenate the new array onto the original
$scope.releases = $scope.releases.concat([
{name : "Development",active:false},
{name : "Production",active:false},
{name : "Staging",active:false}
]);
Just use the Array concat method
$scope.release = [{name : "All Stage",active:true}];
$scope.releases = [
{name : "Development",active:false},
{name : "Production",active:false},
{name : "Staging",active:false}
];
$scope.releases = $scope.releases.concat($scope.release);
user angular.extend() to extend the object angular extend
you can also use angular.merge() angular merge
©2020 All rights reserved.