AngularJS : 컨트롤러 기능에서 뷰를 전환하려면 어떻게 해야 합니까? Angular의 ng클릭 기능을 사용하려고 합니다.뷰를 전환하려면 JS를 선택합니다.아래 코드로는 어떻게 하면 좋을까요? index.displaces를 표시합니다. click me controller.controller.controllers function Cntrl ($scope) { $scope.someFunction = function(){ //code to change view? } } 다른 뷰 간에 전환하려면 index.html 파일의 window.location($location 서비스 사용!)을 직접 변경할 수 있습니다. edit preview Controller.js function Cntrl ($scope,$lo..