Angular UI-Router : URL changed but view isn't loaded
问题 I'm working on my UI-Router app with nested views. I defined some states like this: $stateProvider .state('parent', { url: "/parent", views: { 'area1': {templateUrl : 'parentView.html'}, 'area2' : ... // some other areas + template } }) .state('parent.child1', { url: "/child1", views: { 'area1' : {templateUrl : 'child1View.html'}, 'area2' : ... // still some other areas, not changing } }) .state('parent.child2', { url: "/child2", views: { 'area1' : {templateUrl : 'child2View.html'}, 'area2' :