Angularjs 중첩 상태: 3 수준 Agnularjs와 Ionic Framework를 사용하고 있습니다.다음과 같이 중첩된 상태를 실현하려고 합니다. 이벤트 메뉴(루트) 홈(2레벨) 홈 1(3레벨) 홈 2 체크인하다 참석자 내 루트 파일은 다음과 같습니다. angular.module('ionicApp', ['ionic']) .config(function($stateProvider, $urlRouterProvider) { $stateProvider .state('eventmenu', { url: "/event", abstract: true, templateUrl: "event-menu.html" }) .state('eventmenu.home', { url: "/home", views: { 'menuCo..