这是我的代码:
.state('profile',{ url : '/profile',templateUrl: 'views/user.html',controller: 'UserCtrl' }) .state('profile.forgot',{ url : '/delivers',templateUrl: 'views/user_forgot.html',<- this template not appear,when state is active controller: 'forgotCtrl' }) <a ui-sref="profile.forgot">Forgot your pasword?</a> <div class="panel" ui-view=""></div>
当我点击链接,在ui-view中显示模板和控制器的父状态.
AngularJS版本为1.2.0-rc.2@H_404_6@
解决方法
嵌套状态将在其父模板的ui-view元素内呈现(如果是parentless,则在根ui视图内渲染).确保您阅读文档的“
Nested States & Views”部分.