2014-08-27 3 views
0

버튼을 눌렀을 때 한 페이지에서 다른 페이지로 전환하려고합니다. ng-click을 사용하고 있지만 버튼을 누르면 뷰가 전환되지 않습니다.기능이 작동하지 않는 상태에서 ng-click을 클릭하십시오.

의 .js는

$scope.onCreateAppointment = function() { 

       $scope.templates.myTemplate = "views/calendar.html"; 

      }; 

     }]); 

ng-click="OnCreateAppointment()">Create Appointment</button> 

답변

2

자바 스크립트는 대소 문자를 구분 파일 .html 파일. "OnCreateAppointment()"메서드가 범위에 없습니다.

수정은 다음과 같습니다

<button ng-click="onCreateAppointment()">Create Appointment</button> 
+0

Thanks.It 일했다. – Programmer345