UI 라우터 URL에서 문자열 매개 변수를 쿼리하시겠습니까? 상태는 다음과 같습니다. .state('quotes', { abstract: true, url: '/quotes' }) .state('quotes.new', { url: '/new', templateUrl: 'views/quote-form.html', controller: 'QuoteFormCtrl' }) .state('quotes.new.customer', { url: '?customer', templateUrl: 'views/quote-form.html', controller: 'QuoteFormCtrl' }) URL을 눌렀을 때/quotes/new?customer=123고객 쿼리 문자열이 제거되고 다음 위치에 남습니다.quotes.new주..