1

我已经在这个问题上停留了一周,我觉得我理解了 'ui-router' 和 'ionic's' 视图路由,但情况似乎并非如此。

我已经看到了许多视图如何工作的示例,但是现在随着我的构建更大,我看到的示例对于我的项目来说太简单了,因为我的项目具有侧面菜单、选项卡和每个选项卡内容的视图。

我的问题:

我在我的选项卡内持有多个不同控制器的视图。我正在使用一张传单地图和一个下拉列表,其中将填充我的位置,并且我都开始工作了。然而,这些观点正在发出奇怪的呼吁。每当我选择传单地图时,它都会discover-home.htmlion-nav-bar我的menu.html. 此外,您可以看到此列表视图位于我的地图和缩放图标之间,如果不触摸我的地图并且我切换选项卡并返回,我将无法再次打开列表。

我认为我需要问的问题是

1. 使用 ionic 的视图导航在多视图应用程序中导航的正确方法是什么?

2. 为什么更改视图会导致其他控制器无法再次被调用?

3. 有哪些最佳实践?

这就是我正在处理的事情。任何帮助,将不胜感激。

我在discover-home.html中的标签视图

在此处输入图像描述

menu.html内的侧边栏视图

在此处输入图像描述

列表显示在discover-home.html中

在此处输入图像描述

discover -home.html中的发现列表隐藏在menu.html的 ion-nav-bar下

在此处输入图像描述

这是我的代码片段

索引.html

 <body ng-app="starter">
     <ion-nav-view></ion-nav-view>
  </body>

发现-tabs-controller.html

这控制选项卡视图(其中之一是discover-home.html)

    <ion-view>
      <div class="tabs-striped tabs-top tabs-background-positive tabs-color-light">

    <ion-tabs class="tabs-positive tabs-icon-only" >
     <ion-content  has-subheader="true"></ion-content>

<!--HOME TAB [OPEN]-->
    <ion-tab title="Discover" icon-on="icon ion-home" icon-off="icon ion-home" 
      href="#/app/discover/home">

      <ion-nav-view cache-view="true" name="home-tab"></ion-nav-view>
        <!-- View For Home.html -->
      </ion-tab>
 <!--HOME TAB [CLOSED]-->  


     <!--MORE TABS HERE-->

    </ion-content>
    </ion-tabs>
      </div>
    </ion-view>

发现-home.html

<ion-view view-title="Home">


<!--SUBHEADER BUTTON: DISPLAY LISTVIEW -->
    <div ng-controller="FrostCtrl" class="bar bar-subheader button bar-balanced" ng-click="pushFrost()">
        <h2 class="title">{{title}} List</h2>
    </div>



  <!--DISPLAY OVERLAY WITH LIST-->
    <ion-pane ng-controller="OverlayCtrl" class="dark-overlay" ng-show="showOverlay">

      <ion-content class="has-subheader">

        <button class="button button-block button-outline button-balanced" ng-click="hideFrost()">Dismiss
        </button>

        <ion-list>
            <ion-item ng-repeat="item in items" class="dark-item">
              {{item.text}}
           </ion-item>
        </ion-list>

        </ion-content>
    </ion-pane>




  <!--LEAFLET MAP -->
    <leaflet class="has-subheader padding"center="nassau" paths="paths" tiles="tiles" markers="markers" defaults="defaults">
      </leaflet>


</ion-view>

控制器.js

          angular.module('starter.controllers', [])
            ...


    // #######| LEAFLET MAP  |#######
        .controller('ActivityCntl', [ '$scope', 'leafletData', function($scope, leafletData) {

           var tileSource = {
                onlineTiles: {
                    url: "http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png" 
                },

            };

            angular.extend($scope, {

                nassau: {
                lat: 25.074521,
                lng: -77.318191,
                zoom: 13
                .........
            });
        }])


  // #######| SHOW OVERLAY  |#######
        .controller('FrostCtrl', ['$scope', '$rootScope', '$compile', function($scope, $rootScope, $compile) {
          $scope.pushFrost = function() {
            var el = angular.element(document.getElementById('myPane'));
            el.attr('frost', '');
            el = $compile(el)($scope);
            $rootScope.showOverlay = true;
          };
        }])


    //#######| DISPLAYS CONTENTS |##########
        .controller('OverlayCtrl', function($scope, $rootScope, $compile) {
          $scope.items = [];
          for(var i = 0; i < 5; i++) {
            $scope.items.push({

              text: 'Whatever ' + (i+1)

               });
          }
          $scope.hideFrost = function() {
            $rootScope.showOverlay = false;
            var el = angular.element(document.getElementById('myPane'));
          };
        })

应用程序.js

config(['$stateProvider', '$urlRouterProvider','$locationProvider',function($stateProvider, $urlRouterProvider, $locationProvider) {
  $stateProvider

.state('app', {
    name: 'app',
    url: "/app",
    abstract: true,
    templateUrl: "templates/menu.html",
    controller: 'AppCtrl'
  })

.state('app.discover', {
    name: 'app.discover',
    url: "/discover",
    views: {
      'menuContent': {
        templateUrl: "templates/discover-tabs-controller.html"
      }
    }
  })

// 对于我的 discover-home.html .state('app.discover.home', {

url: "/home",
views: {
   'home-tab': {
   templateUrl: "templates/discover-tabs/discover-home.html",
   controller:  'ActivityCntl'
       },
       'discover-home-listview': {
   templateUrl: "templates/discover-tabs/discover-home.html",

       }
}

})

菜单

这控制侧边菜单项

    <ion-side-menus enable-menu-with-back-views="false">
      <ion-side-menu-content>

//IT GETS PUSHED UNDER THIS
        <ion-nav-bar class="bar-calm">
          <ion-nav-back-button>
          </ion-nav-back-button>

          <ion-nav-buttons side="left">
            <button class="button button-icon button-clear ion-navicon" menu-toggle="left">
            </button>
          </ion-nav-buttons>
        </ion-nav-bar>
        <ion-nav-view name="menuContent"></ion-nav-view>
      </ion-side-menu-content>

      <ion-side-menu side="left">
        <ion-header-bar class="bar-stable">
          <h1 class="title">MYApps</h1>
        </ion-header-bar>
        <ion-content>
          <ion-list>
            <ion-item menu-close ng-click="login()">
            <i class="icon ion-person"></i>
              Login
            </ion-item>
            <ion-item menu-close href="#/app/discover">
             <i class="icon ion-location"></i>
              Discover
            </ion-item>
            <ion-item menu-close href="#/app/map">
            <i class="icon ion-map"></i>
              Map
            </ion-item>

          </ion-list>
        </ion-content>
      </ion-side-menu>
    </ion-side-menus>
4

0 回答 0