I have a small problem with AngularJS
I need to pull the array values
angular.module('app', [])
.controller('Ctrl', ['$scope', function($scope) {
$scope.data = [{
a: 1,
b: 2,
c: [{
d: "z",
e: "4"
},{
d: "z",
e: "4"
}]
}];
}]);
Html
<div ng-repeat="i in data">
<p>Não puxa: {{i.c.d}}</p>
<p>Puxando o Valor: {{i.c.0.d}}</p>
</div>
And unfortunately I can not pull. Follow Link: link