Posts by Anderson • 43 points
4 posts
-
3
votes2
answers981
viewsQ: Angular2 ngFor help with loop
I have a file nvi.json that is this way: [ { "abbrev": "gn", "book": "Gênesis", "chapters": [ { "1": { "1": "...", "2": "..." } }, { "2": { "1": "...", "2": "..." } }, { "3": { "1": "...", "2":…
-
0
votes2
answers3348
viewsQ: Call function in $state.go() Ionic/Angular.js
I wonder how I can call a function that is in another controller example: I am in the 'Register' view and after making a registration I am redirected to view 'Home' no controller from Home I have a…
-
-1
votes1
answer366
viewsQ: Chart per weeks
Hello, I am trying to put together a chart that shows the data grouped for weeks, as in the example below: In this example Domimog had 2 records, Second 2 records, Third 1 record... I’m trying with…
-
1
votes1
answer43
viewsQ: Recover standardized array object
Hello, everyone. I have a problem to recover an object, follow my situation: Like I’m doing: $scope.data = []; for(var i = 0; i < 5; i++) { $scope.data.push(i); } //Result: [0,1,2,3,4] Result I…