중첩된 경로 angularjs를 사용할 때 "상태에서...를 해결할 수 없습니다" 오류가 표시됨 angularjs는 처음이라 응용 프로그램에 중첩된 ui-routes를 사용하고 싶습니다.일부 코드 조각... profile.disply Edit Profile 클라이언트_UI.js //object for routing var route = angular.module('route', ["ui.router"]) // configure the routing route.config(function($stateProvider, $urlRouterProvider, $locationProvider) { // send to profile page $urlRouterProvider.otherwise("/profile"); ..