Angular.js 라이브러리는 컨트롤러 단위로 바인딩합니다.
특정 공간 분할 태그에 ng-controller 속성을 부여하고 해당 속성 값과 같은 이름의 함수를 생성합니다.
<!Doctype html>
<html ng-app>
<head>
<title>Angular.js</title>
<link rel="stylesheet" href="bootstrap.css" />
<script src="angular.js"></script>
<script>
function basicController($scope){
}
</script>
</head>
<body class="container">
<div ng-controller="basicController">
</div>
</body>
</html>
출처 :모던웹을 위한 HTML5프로그래밍
댓글 없음:
댓글 쓰기