Posts by Jose Cerejo • 21 points
3 posts
-
1
votes4
answers536
viewsQ: How to share the $Scope variable from one controller to another with parameters in Angularjs
I have this: $scope.products = []; $http.get('app/components/job/controller/teste.json').success(function (resource) { $scope.products = resource; }); $scope.getIdJobs = function(getIdJobs) { var…
-
0
votes1
answer60
viewsQ: Angularjs single route Parameters
Good guys, I am trying to create a simple parameter on my route in the Angularjs. What I want is for my job page every time I click on an article to open the information in that article on another…
-
1
votes1
answer100
viewsQ: Array repeats simultaneously in json
I am trying to make a calendar where I will get the information in a request Rest in Angularjs. What I want to create a calendar where you can record your events. With the json date attribute he…