0
버튼을 눌렀을 때 한 페이지에서 다른 페이지로 전환하려고합니다. ng-click을 사용하고 있지만 버튼을 누르면 뷰가 전환되지 않습니다.기능이 작동하지 않는 상태에서 ng-click을 클릭하십시오.
의 .js는
$scope.onCreateAppointment = function() {
$scope.templates.myTemplate = "views/calendar.html";
};
}]);
이
ng-click="OnCreateAppointment()">Create Appointment</button>
Thanks.It 일했다. – Programmer345