AngularJS 의 View, Controllers, Scope의 관계
View, Controller, $scope$scope 는 컨트롤러와 뷰 사이에서 중계자자(ViewModel) 역할을 합니다. MV* 프레임워크(MVC, MVVM, MVP) Controller 를 생성한 후 View 에 추가 // 사용할 컨트롤러 설정 초간단 컨트롤러 추가 //$scope 의 멤버에 접근 {{ cust.name }} - {{ cust.city }} // 함수로 컨트롤러 생성 function SimpleController($scope) { // 매개변수로 동적 $scope 주입 $scope.customers = [ { name: 'RedPlus', city: '인천'}, { name: 'Taeyo', city: '서울'}, { name: 'Songgun', city: '경기'}, { nam..