AngularJS




















































AngularJS
AngularJS logo.svg
Developer(s) Google
Initial release October 20, 2010; 8 years ago (2010-10-20)[1]
Stable release
1.7.8
/ March 11, 2019; 18 days ago (2019-03-11)[2]

Repository
  • github.com/angular/angular.js
Edit this at Wikidata
Written in Javascript
Platform JavaScript engine
Size 167 kB production
1.2 MB development
Type Web framework
License MIT License
Website angularjs.org

AngularJS is a JavaScript-based open-source front-end web framework mainly maintained by Google and by a community of individuals and corporations to address many of the challenges encountered in developing single-page applications. It aims to simplify both the development and the testing of such applications by providing a framework for client-side model–view–controller (MVC) and model–view–viewmodel (MVVM) architectures, along with components commonly used in rich Internet applications. (This flexibility has led to the acronym MVW, which stands for "model-view-whatever" and may also encompass model–view–presenter and model–view–adapter.) In 2014, the original AngularJS team began working on the Angular web framework.


The AngularJS framework works by first reading the Hypertext Markup Language (HTML) page, which has additional custom HTML attributes embedded into it. Angular interprets those attributes as directives to bind input or output parts of the page to a model that is represented by standard JavaScript variables. The values of those JavaScript variables can be manually set within the code, or retrieved from static or dynamic JSON resources.


According to JavaScript analytics service Libscore, AngularJS is used on the websites of Wolfram Alpha, NBC, Walgreens, Intel, Sprint, ABC News, and about 12,000 other sites out of 1 million tested in October 2016.[3] AngularJS is currently in the top 100 of the most starred projects on GitHub.[4]


AngularJS is the frontend part of the MEAN stack, consisting of MongoDB database, Express.js web application server framework, Angular.js itself, and Node.js server runtime environment.




Contents






  • 1 AngularJS


  • 2 Scope


  • 3 Bootstrap


  • 4 Two-way data binding


  • 5 Development history


    • 5.1 Legacy browser support


    • 5.2 Angular and AngularDart


    • 5.3 Angular Universal




  • 6 Chrome extension


  • 7 Performance


  • 8 See also


  • 9 References


  • 10 Further reading


  • 11 External links





AngularJS


AngularJS is built on the belief that declarative programming should be used to create user interfaces and connect software components, while imperative programming is better suited to defining an application's business logic.[5] The framework adapts and extends traditional HTML to present dynamic content through two-way data-binding that allows for the automatic synchronization of models and views. As a result, AngularJS de-emphasizes explicit Document Object Model (DOM) manipulation with the goal of improving testability and performance.


AngularJS's design goals include:



  • to decouple DOM manipulation from application logic. The difficulty of this is dramatically affected by the way the code is structured.

  • to decouple the client side of an application from the server side. This allows development work to progress in parallel, and allows for reuse of both sides.

  • to provide structure for the journey of building an application: from designing the UI, through writing the business logic, to testing.


AngularJS implements the MVC pattern to separate presentation, data, and logic components.[6] Using dependency injection, Angular brings traditionally server-side services, such as view-dependent controllers, to client-side web applications. Consequently, much of the burden on the server can be reduced.



Scope


AngularJS uses the term "scope" in a manner akin to the fundamentals of computer science.


Scope in computer science describes when in the program a particular binding is valid. The ECMA-262 specification defines scope as: a lexical environment in which a Function object is executed in client-side web scripts;[7] akin to how scope is defined in lambda calculus.[8]


As a part of the "MVC" architecture, the scope forms the "Model", and all variables defined in the scope can be accessed by the "View" as well as the "Controller". The scope behaves as a glue and binds the "View" and the "Controller".


In AngularJS, "scope" is a certain kind of object[9] that itself can be in scope or out of scope in any given part of the program, following the usual rules of variable scope in JavaScript like any other object.[10] When the term "scope" is used below, it refers to the Angular scope object and not the scope of a name binding.



Bootstrap


The task performed by the AngularJS bootstrapper occur in three phases[11] after the DOM has been loaded:



  1. Creation of a new Injector

  2. Compilation of the directives that decorate the DOM

  3. Linking of all directives to scope


AngularJS directives allow the developer to specify custom and reusable HTML-like elements and attributes that define data bindings and the behavior of presentation components. Some of the most commonly used directives are:



ng-animate

A module provides support for JavaScript, CSS3 transition and CSS3 keyframe animation hooks within existing core and custom directives.


Since ng-* attributes are not valid in HTML specifications, data-ng-* can also be used as a prefix. For example, both ng-app and data-ng-app are valid in AngularJS.



ng-app

Declares the root element of an AngularJS application, under which directives can be used to declare bindings and define behavior.

ng-aria

A module for accessibility support of common ARIA attributes.

ng-bind

Sets the text of a DOM element to the value of an expression. For example, <span ng-bind="name"></span> displays the value of ‘name’ inside the span element. Any change to the variable ‘name’ in the application's scope reflect instantly in the DOM.

ng-class

Conditionally apply a class, depending on the value of a boolean expression.

ng-controller

Specifies a JavaScript controller class that evaluates HTML expressions.

ng-if

Basic if statement directive that instantiates the following element if the conditions are true. When the condition is false, the element is removed from the DOM. When true, a clone of the compiled element is re-inserted.

ng-init

Called once when the element is initialized.

ng-model

Similar to ng-bind, but establishes a two-way data binding between the view and the scope.

ng-model-options

Provides tuning for how model updates are done.

ng-repeat

Instantiate an element once per item from a collection.


ng-show & ng-hide

Conditionally show or hide an element, depending on the value of a boolean expression. Show and hide is achieved by setting the CSS display style.

ng-switch

Conditionally instantiate one template from a set of choices, depending on the value of a selection expression.

ng-view

The base directive responsible for handling routes[12] that resolve JSON before rendering templates driven by specified controllers.



Two-way data binding


AngularJS two-way data binding is its most notable feature, largely relieving the server backend of templating responsibilities. Instead, templates are rendered in plain HTML according to data contained in a scope defined in the model. The $scope service in Angular detects changes to the model section and modifies HTML expressions in the view via a controller. Likewise, any alterations to the view are reflected in the model. This circumvents the need to actively manipulate the DOM and encourages bootstrapping and rapid prototyping of web applications.[13]
AngularJS detects changes in models by comparing the current values with values stored earlier in a process of dirty-checking, unlike Ember.js and Backbone.js that trigger listeners when the model values are changed.[14]



$watch

is angular method, for dirty checking. Any variable or expression assigned in $scope automatically sets up a .mw-parser-output .monospaced{font-family:monospace,monospace}
$watchExpression in angular. So assigning a variable to
$scope or using directives like
ng-if, ng-show, ng-repeat etc. all create watches in angular scope automatically. Angular maintains a simple array of
$$watchers in the
$scope objects

Different ways of defining a watcher in AngularJS.

  • explicitly $watch an attribute on
    $scope.
    $scope.$watch('person.username', validateUnique);


  • place an interpolation in your template (a watcher will be created for you on the current $scope).

  • ask a directive such as
    ng-model to define the watcher for you.
    <input ng-model="person.username" />






$digest

is angular method, which is invoked internally by angularjs in frequent intervals. In
$digest method, angular iterates over all
$watches in its scope/child scopes.



$apply

is an angular method, internally invokes
$digest. This method is used when you want to tell angular manually start dirty checking (execute all
$watches)



$destroy

is both a method and event in angularjs.
$destroy() method, removes a scope and all its children from dirty checking.
$destroy event is called by angular whenever a $scope or $controller is destroyed.



Development history


AngularJS was originally developed in 2009 by Miško Hevery[15] at Brat Tech LLC[16] as the software behind an online JSON storage service, that would have been priced by the megabyte, for easy-to-make applications for the enterprise. This venture was located at the web domain "GetAngular.com",[16] and had a few subscribers, before the two decided to abandon the business idea and release Angular as an open-source library.


The 1.6 release added many of the concepts of Angular to AngularJS, including the concept of a component-based application architecture.[17] This release among others removed the Sandbox, which many developers believed provided additional security, despite numerous vulnerabilities that had been discovered that bypassed the sandbox.[18] The current (as of June 2018) stable release of AngularJS is 1.7.0[19]


In January 2018, a schedule was announced for phasing-out AngularJS: after releasing 1.7.0, the active development on AngularJS will continue till June 30, 2018. Afterwards, 1.7 will be supported till  June 30, 2021 as long-term support.[20]



Legacy browser support


Versions 1.3 and later of AngularJS do not support Internet Explorer 8 or earlier. While AngularJS 1.2 supports IE8, its team does not.[21][22]



Angular and AngularDart


Subsequent versions of AngularJS are simply called Angular. Angular is an incompatible TypeScript-based rewrite of AngularJS. Angular 4 was announced on 13 December 2016, skipping 3 to avoid a confusion due to the misalignment of the router package's version which was already distributed as v3.3.0.[23]


AngularDart works on Dart, which is an object-oriented, class defined, single inheritance programming language using C# style syntax, that is different from Angular JS (which uses JavaScript) and Angular 2/ Angular 4 (which uses TypeScript). Angular 4 released in March 2017, with the framework's version aligned with the version number of the router it used. Angular 5 was released on November 1, 2017.[24] Key improvements in Angular 5 include support for progressive Web apps, a build optimizer and improvements related to Material Design.[25] Angular 6 was released on 3rd May 2018[26], Angular 7 was released on 18th October 2018, and Angular 8 is due to be released around March/April 2019.
Angular follows Semantic Versioning standards, with each major version number indicating potentially breaking changes. Angular has pledged to provide 6 months of active support for each major version followed by 12 months of long term support. Major releases are bi-yearly with 1 to 3 minor releases for every major release.[27]



Angular Universal


A normal Angular application executes in the browser, while Angular Universal generates static application pages on the server through server-side rendering (SSR).[28]



Chrome extension


In July 2012, the Angular team built an extension for the Google Chrome browser called Batarang,[29] that improves the debugging experience for web applications built with Angular. The extension aims to allow for easy detection of performance bottlenecks and offers a GUI for debugging applications.[30] For a time during late 2014 and early 2015, the extension was not compatible with recent releases (after v1.2.x) of Angular.[31] The last update made to this extension was on April 4, 2017.



Performance


AngularJS sets out the paradigm of a digest cycle. This cycle can be considered a loop, during which AngularJS checks if there is any change to all the variables watched by all the $scopes. If $scope.myVar is defined in a controller and this variable was marked for watching, Angular will monitor the changes on myVar in each loop iteration.


This approach potentially leads to slow rendering when AngularJS checks on too many variables in the $scope every cycle. Miško Hevery suggests keeping fewer than 2000 watchers on any page.[14]



See also




  • React.js

  • Vue.js

  • Polymer (library)

  • Comparison of JavaScript frameworks



References





  1. ^ Earliest known releases


  2. ^ "Releases". GitHub..mw-parser-output cite.citation{font-style:inherit}.mw-parser-output .citation q{quotes:"""""""'""'"}.mw-parser-output .citation .cs1-lock-free a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Lock-green.svg/9px-Lock-green.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .citation .cs1-lock-limited a,.mw-parser-output .citation .cs1-lock-registration a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Lock-gray-alt-2.svg/9px-Lock-gray-alt-2.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .citation .cs1-lock-subscription a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Lock-red-alt-2.svg/9px-Lock-red-alt-2.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .cs1-subscription,.mw-parser-output .cs1-registration{color:#555}.mw-parser-output .cs1-subscription span,.mw-parser-output .cs1-registration span{border-bottom:1px dotted;cursor:help}.mw-parser-output .cs1-ws-icon a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/12px-Wikisource-logo.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output code.cs1-code{color:inherit;background:inherit;border:inherit;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;font-size:100%}.mw-parser-output .cs1-visible-error{font-size:100%}.mw-parser-output .cs1-maint{display:none;color:#33aa33;margin-left:0.3em}.mw-parser-output .cs1-subscription,.mw-parser-output .cs1-registration,.mw-parser-output .cs1-format{font-size:95%}.mw-parser-output .cs1-kern-left,.mw-parser-output .cs1-kern-wl-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right,.mw-parser-output .cs1-kern-wl-right{padding-right:0.2em}


  3. ^ "Libscore". libscore.com. Retrieved 2016-10-17.


  4. ^ "GitHub search results sorted by number of stars".


  5. ^ "What Is Angular?". Retrieved 12 February 2013.


  6. ^ Understanding Components


  7. ^ "Annotated ECMAScript 5.1, Section 10.2 Lexical Environments". Retrieved 2015-01-03.


  8. ^ Barendregt, Henk; Barendsen, Erik (March 2000), Introduction to Lambda Calculus (PDF)


  9. ^ "AngularJS: Developer Guide: Scopes". Retrieved 2015-01-03.


  10. ^ "ECMA-262-3 in detail. Chapter 4. Scope chain". Retrieved 2015-01-03.


  11. ^ "Writing Directives". angularjs.org. November 28, 2012. Retrieved 2013-07-21.


  12. ^ Component Router


  13. ^ "5 Awesome AngularJS Features". Retrieved 13 February 2013.


  14. ^ ab Misko Hevery. "Databinding in angularjs". Retrieved 2014-03-09.


  15. ^ "Hello World, <angular/> is here". Retrieved 2014-10-12.


  16. ^ ab "GetAngular". Angular / BRAT Tech. LLC. Archived from the original on 2010-04-13. Retrieved 2014-10-12.


  17. ^ "AngularJS: Developer Guide for v1.5.8: Components". Google. Retrieved 2017-09-26.


  18. ^ "angular.js/CHANGELOG.md". GitHub. Retrieved 2017-09-26.


  19. ^ "Github Release 1.7.0".


  20. ^ "Stable AngularJS and Long Term Support". Angular Blog. 2018-01-26. Retrieved 2018-03-16.


  21. ^ "Internet Explorer Compatibility". Angular JS 1.7.7 Developer Guide. Google. Retrieved 12 Feb 2019. AngularJS 1.3 has dropped support for IE8. Read more about it on our blog. AngularJS 1.2 will continue to support IE8, but the core team does not plan to spend time addressing issues specific to IE8 or earlier.


  22. ^ Minar, Igor. "AngularJS 1.3: a new release approaches". AngularJS Blog. Retrieved 2014-10-12.


  23. ^ "Ok... let me explain: it's going to be Angular 4.0". angularjs.blogspot.kr. Retrieved 2016-12-14.


  24. ^ https://blog.angular.io/version-5-0-0-of-angular-now-available-37e414935ced


  25. ^ "Angular 5 JavaScript framework delayed".


  26. ^ Fluin, Stephen (3 May 2018). "Version 6 of Angular Now Available – Angular Blog". Angular Blog. Retrieved 8 June 2018.


  27. ^ "Angular versioning and releases". angular.io. Google. Retrieved 8 June 2018.


  28. ^ "Dynamic SSR & Static Pre-rendering".


  29. ^ "angular/angularjs-batarang (GitHub)". Retrieved 2014-10-12.


  30. ^ Ford, Brian. "Introducing the AngularJS Batarang". AngularJS Blog. Retrieved 2014-10-12.


  31. ^ "batarang Chrome extension for AngularJS appears broken".




Further reading


.mw-parser-output .refbegin{font-size:90%;margin-bottom:0.5em}.mw-parser-output .refbegin-hanging-indents>ul{list-style-type:none;margin-left:0}.mw-parser-output .refbegin-hanging-indents>ul>li,.mw-parser-output .refbegin-hanging-indents>dl>dd{margin-left:0;padding-left:3.2em;text-indent:-3.2em;list-style:none}.mw-parser-output .refbegin-100{font-size:100%}



  • Green, Brad; Seshadri, Shyam (March 22, 2013). AngularJS (1st ed.). O'Reilly Media. p. 150. ISBN 978-1449344856.


  • Kozlowski, Pawel; Darwin, Peter Bacon (August 23, 2013). Mastering Web Application Development with AngularJS (1st ed.). Packt Publishing. p. 372. ISBN 978-1782161820.


  • Ruebbelke, Lukas (January 1, 2015). AngularJS in Action (1st ed.). Manning Publications. p. 325. ISBN 978-1617291333.




External links







  • Official website Edit this at Wikidata











這個網誌中的熱門文章

12.7 cm/40 Type 89 naval gun

Shark

Wiciokrzew