10

これが私のコードです:

.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ビューに親状態のテンプレートとコントローラーが表示されました。AngularJS のバージョンは 1.2.0-rc.2 です

4

2 に答える 2

-2

親子の命名規則に注意してください!

.state('profile.forgot',{ 
        url : '/forgot',
        templateUrl: 'views/profile.forgot.html',
        controller: 'forgotCtrl'
      })
于 2014-01-14T22:50:00.443 に答える