Angular 설정

Posted by 단순대왕 Angular.js : 2014. 9. 12. 14:11

Angular.js 라이브러리는 구글에서 개발한 라이브러리입니다.

Angular.js 라이브러리는 Backbone.js 라이브러리처럼 라우터를 지원하며

Knockout 라이브러리처럼 자동 바인딩을 사용합니다.

Angular.js 라이브러리는 MVC 패턴과 MVVM 패턴을 혼합한 형태로 사용합니다.


Angular.js 라이브러리는 문자열 "ng"로 시작하는 속성으로 기능을 사용합니다.

html 태그에 ng-app 속성을 사용하는 것은 HTML 페이지에서 Angular.js 라이브러리를

사용하겠다고 선언하는 것입니다.

<html ng-app>

<head></head>

<body>

<input ng-model="text"/>

<h1>Input: {{ text }} </h1> // Angular.js 라이브러리 템플릿

</body>

</html>

In Angular, the view is a projection of the model through the HTML template. This means that whenever the model changes, Angular refreshes the appropriate binding points, which updates the view.

'Angular.js' 카테고리의 다른 글

angular example  (0) 2014.09.15
Angular 서비스  (0) 2014.09.15
Angular 페이지 라우트  (0) 2014.09.15
Angular ng 속성  (0) 2014.09.12
Angular 컨트롤러  (0) 2014.09.12