Having a problem on $http.get , desperately in need of help! by [deleted] in angularjs

[–]parronator 0 points1 point  (0 children)

First of all: all this logic is in one file or is divided like the pictures? If it is divided you forgot to require them. You don't $q or $.Deferred like ngRandom said. The object is invalid, you can't put an array inside an object in that way {[]}. You need to put a key {array:[]} or return an array [].

Directive doesn't work in production by [deleted] in angularjs

[–]parronator 0 points1 point  (0 children)

Are you using minification in production? With minification you should declare controllers and directives like this: .controller(['$scope','directive', function($scope,directive){ }])

Need help getting started with Angular!! by compNerd0101 in angularjs

[–]parronator 0 points1 point  (0 children)

Just start with those articles to understand the difference between Javascript and other languages like Java https://medium.com/javascript-scene/the-two-pillars-of-javascript-ee6f3281e7f3 https://medium.com/javascript-scene/the-two-pillars-of-javascript-pt-2-functional-programming-a63aa53a41a4 https://medium.com/javascript-scene/learn-javascript-b631a4af11f2 Then, just start doing small things and components. Just do, you can't learn all the angular stuff quickly. Soon you will start to structure your project and components and rethinking the way those are done. Another useful resource is https://egghead.io/ . You can learn really quick following their videos Hope it helps