UI 라우터에서 '컨트롤러'를 사용하는 것이 예상대로 작동하지 않습니다. 추상 상태와 컨트롤러를 구문으로 사용하는 페이지에 대해 다음과 같은 상태 설정이 있습니다. # Details page route .state 'title', url: '/title', abstract: true, template: '', .state 'title.show', url: '/:titleId', templateUrl: 'title/show.html' controller: 'Title as t' 이 데모를 위해 'Title' 컨트롤러의 't' 인스턴스에 변수를 할당하고 Title 컨트롤러 기능 내부에서 이 작업을 수행합니다. angular.module('title').controller 'Title', ['$state', ..