使用angular ui路由器加载视图两次

时间:2014-12-04 06:58:38

标签: angularjs angular-ui-router

我认为我遇到了问题。视图加载了两次,我不知道发生了什么。 enter image description here

我在索引文件中所做的是:

<body class="ng-cloak">
  <!--Menus-->    

  <div class="container-fluid">
      <div data-ng-controller="HomeCtrl" class="row">
           <!--Here is the ui view directive-->
          <div class="col col-md-12"  data-ui-view ></div>
      </div>
  </div>

  <!--script files here-->
</body>

在路线文件中我有这些。只有在我访问contact.inner页面时才会出现此问题

$stateProvider
            .state('home', {
                url: '/',
                templateUrl: 'partials/home.html'
            })
            .state('contact', {
                url: '/contact',
                templateUrl: 'partials/contact.html'
            })
            .state('contact.inner', {
                url: '/inner',
                templateUrl: 'partials/inner.html'
            });

0 个答案:

没有答案