1. ホーム
  2. angularjs

[解決済み] Angular UI-Routerのマルチビュー

2022-02-12 22:07:34

質問

angular UI-Routerを使用しています。私のルート設定に以下があります

.config(function config($stateProvider) {
  $stateProvider.state('newsFeedView', {
      url: '/newsFeed',
      controller: 'newsFeedController',
      templateUrl: '../src/app/bulletinBoard/views/newsFeed.part.html',
      data: {
        pageTitle: 'News Feed'
      }
    })
    .state('tradeFeedView', {
      url: '/tradeFeed',
      controller: 'tradeFeedController',
      templateUrl: '../src/app/bulletinBoard/views/tradeFeed.part.html',
      data: {
        pageTitle: 'Trade Feed'
      }
    })
    .state('bulletinBoard', {
      url: '/bulletinBoard',
      views: {
        'tradeFeed': {
          url: "",
          controller: 'tradeFeedController',
          templateUrl: '../src/app/bulletinBoard/views/tradeFeed.part.html'
        },
        'newsFeed': {
          url: "",
          controller: 'newsFeedController',
          templateUrl: '../src/app/bulletinBoard/views/newsFeed.part.html'
        }
      },
      templateUrl: '../src/app/bulletinBoard/views/bulletinBoard.part.html'
    });
})

インデックス・ページでは、ビューを呼び出すだけです。

<div class="container" ui-view></div>

私のbulletinBoard.htmlで、ネストされたビューを持ちたいのです。

<div ui-view="tradeFeed"></div>
<div ui-view="newsFeed"></div>

newsFeedページと/tradeFeedページでは完璧に動作しますが、掲示板ではページ上に何も表示されないのです。どこで間違っているのでしょうか?

どうすればいいですか?

GitHubの公式Wikiにあるサンプルは、非常に直感的でないと思います。より良いものを紹介します。

https://scotch.io/tutorials/angular-routing-using-ui-router

例えば

...

.state('bulletinBoard', {
    url: '/bulletinBoard',
    views: {

        // the main template will be placed here (relatively named)
        '': { templateUrl: '../src/app/bulletinBoard/views/bulletinBoard.part.html' },

        // the child views will be defined here (absolutely named)
        'tradeFeed@bulletinBoard': { template: ..... },

        // another child view
        'newsFeed@bulletinBoard': { 
            templateUrl: ......
        }
    }

});

各ビュー属性の構文は以下のとおりです。 viewName@stateName .