Airquotes: Automatic quote generator for a T-shirt website using AngularJS(github.com)
github.com
Airquotes: Automatic quote generator for a T-shirt website using AngularJS
https://github.com/JohnMunsch/airquotes
3 comments
I think he means back-end service, rather than Angular's notion of services.
>> It's a good example of an AngularJS application that's not completely trivial and yet one that does not depend upon having a service it has to connect to for getting and persisting data.
Edit: Updated with relevant quote.
>> It's a good example of an AngularJS application that's not completely trivial and yet one that does not depend upon having a service it has to connect to for getting and persisting data.
Edit: Updated with relevant quote.
here is the HTML and JS:
https://github.com/JohnMunsch/airquotes/blob/master/app/index.html
https://github.com/JohnMunsch/airquotes/blob/master/app/scripts/main.jsI would suggest extracting the calculation functions to angular services.
It seems to me this is an application that should depend on a service or two.
For example, you have your data in a big global variable. This is not a good practice.
I think Angular is one of those things where it pays to learn all its parts as soon as possible (services, compiles, etc..). I say this as someone who is going through the learning curve as well.