离子垂直滚动不适用于选项卡式内容

问题描述 投票:2回答:3

我已经为内容设置了一系列带有离子视图的选项卡。内容在每个选项卡式路径中正确显示,但选项卡式内容不会垂直滚动,列表会在页面上运行,使其无法访问。标签不应该滚动吗?文档表明,对于离子内容,默认情况下应该打开滚动。

指数

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>

    <!-- Application Styles -->
    <link href="css/ionic.app.css" rel="stylesheet">

    <!-- Ionic Angular Scripts -->
    <script src="lib/ionic/js/ionic.bundle.js"></script>
    <script src="lib/ionic/js/angular/angular-resource.js"></script>

    <!-- Cordova Scripts -->
    <script src="cordova.js"></script>

    <!-- Application Scripts -->
    <script src="js/app.js"></script>
    <script src="js/app-configuration.js"></script>
    <script src="js/app-interceptor.js"></script>
    <script src="js/app-route.js"></script>
    <script src="js/app-route-controller.js"></script>
    <script src="js/app-resource.js"></script>
    <script src="js/app-service.js"></script>
</head>
<body ng-app="eventApp">

<ion-nav-view></ion-nav-view>

</body>
</html>

仪表板视图 - /仪表板

<ion-side-menus>
    <ion-side-menu-content>
        <ion-nav-bar class="bar-light">
            <ion-nav-back-button class="button-clear">
                <i class="ion-chevron-left"></i>&nbsp; Back
            </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></ion-nav-view>
    </ion-side-menu-content>

    <ion-side-menu side="left">
        <ion-header-bar class="bar-light"></ion-header-bar>

        <ion-content>
            <ion-list class="list">
                <ion-item href="#" ui-sref="dashboard.index" class="item-icon-left" menu-close>
                    <i class="icon ion-map"></i>&nbsp; Map
                </ion-item>
                <ion-item href="#" ui-sref="dashboard.profile.index" class="item-icon-left" menu-close>
                    <i class="icon ion-android-person"></i>&nbsp; User Profile
                </ion-item>
                <ion-item href="#" ui-sref="dashboard.event.index" class="item-icon-left" menu-close>
                    <i class="icon ion-android-calendar"></i>&nbsp; Events
                </ion-item>
            </ion-list>
        </ion-content>
    </ion-side-menu>
</ion-side-menus>

TABS INNER VIEW - /仪表板/事件/列表

<ion-view view-title="" id="pk-event" hide-back-button="true">
    <ion-tabs class="tabs-positive">

        <ion-tab title="Current" ui-sref="dashboard.event.index">
            <ion-nav-view name="current-tab"></ion-nav-view>
        </ion-tab>

        <ion-tab title="Upcoming" ui-sref="dashboard.event.upcoming">
            <ion-nav-view name="upcoming-tab"></ion-nav-view>
        </ion-tab>

        <ion-tab title="Past" ui-sref="dashboard.event.past">
            <ion-nav-view name="past-tab"></ion-nav-view>
        </ion-tab>

    </ion-tabs>
</ion-view>

TAB CHILD VIEW - /仪表板/事件/列表/当前

<ion-view title="">
    <ion-content>
        <ion-list show-delete="showDelete"
                  show-reorder="showReorder"
                  can-swipe="canSwipe">

            <div class="item item-divider">
                Current Events
            </div>

            <div ng-repeat="event in events">

                    <div>Date: {{event.dates[0] | date}}</div>

                    <br>

                    <h2>{{event.name}}</h2>

                    <p>Event Address: {{event.address}}</p>

                    <p>{{event.note}}</p>

                </ion-item>

            </div>

        </ion-list>
    </ion-content>
</ion-view>
javascript angularjs ionic-framework ionic
3个回答
0
投票

很确定父级应该在你的index.html文件中并且应该有一个

    <ion-nav-view>
    </ion-nav-view>
    <ion-tabs>
    </ion-tabs>

然后你的

<ion-view>
<ion-content>
</ion-content>
<ion-view>

当您路由到某个状态时,将填充离子导航视图,并且您的选项卡将保留在视图下方,而不会在视图中的内容时滚动。您也可以将您的选项卡放在离子视图中的离子内容下,但是如果您采用这种方法并且必须复制逻辑以进行路由,则需要将它们置于每种状态。这是一个例子,我使用了一个离子视图,该视图包含一个幻灯片盒,其中一个幻灯片包含带有标签的离子内容。这是我擦过的一个例子中的代码。

HTML:

 <html ng-app="ionicApp">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">

    <title>Side Menus</title>

    <link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
    <script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
  </head>

  <body ng-controller="MainCtrl">

    <ion-nav-view></ion-nav-view>
    <ion-tabs class="tabs-positive tabs-icon-only">

  <ion-tab title="Home" icon-on="ion-ios-filing" icon-off="ion-ios-filing-outline">
    <!-- Tab 1 content -->
  </ion-tab>

  <ion-tab title="About" icon-on="ion-ios-clock" icon-off="ion-ios-clock-outline">
    <!-- Tab 2 content -->
  </ion-tab>

  <ion-tab title="Settings" icon-on="ion-ios-gear" icon-off="ion-ios-gear-outline">
    <!-- Tab 3 content -->
  </ion-tab>

</ion-tabs>

    <script id="templates/event-menu.html" type="text/ng-template">
      <ion-side-menus enable-menu-with-back-views="false">

        <ion-side-menu-content>
          <ion-nav-bar class="bar-positive">
            <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-assertive">
            <h1 class="title">Left Menu</h1>
          </ion-header-bar>
          <ion-content>
            <ul class="list">
              <!-- Note each link has the 'menu-close' attribute so the menu auto closes when clicking on one of these links -->
              <a href="#/event/check-in" class="item" menu-close>Check-in</a>
              <a href="#/event/attendees" class="item" menu-close>Attendees</a>
            </ul>
          </ion-content>
        </ion-side-menu>

      </ion-side-menus>
    </script>

    <script id="templates/home.html" type="text/ng-template">
      <ion-view view-title="Welcome">
        <ion-content class="padding">
          <p>Swipe to the right to reveal the left menu.</p>
          <p>(On desktop click and drag from left to right)</p>
        </ion-content>
      </ion-view>
    </script>

    <script id="templates/check-in.html" type="text/ng-template">
      <ion-view view-title="Event Check-in">
        <ion-content>
          <form class="list" ng-show="showForm">
            <div class="item item-divider">
              Attendee Info
            </div>
            <label class="item item-input">
              <input type="text" placeholder="First Name" ng-model="attendee.firstname">
            </label>
            <label class="item item-input">
              <input type="text" placeholder="Last Name" ng-model="attendee.lastname">
            </label>
            <div class="item item-divider">
              Shirt Size
            </div>
            <ion-radio ng-repeat="shirtSize in shirtSizes"
                       ng-value="shirtSize.value"
                       ng-model="attendee.shirtSize">
              {{ shirtSize.text }}
            </ion-radio>
            <div class="item item-divider">
              Lunch
            </div>
            <ion-toggle ng-model="attendee.vegetarian">
              Vegetarian
            </ion-toggle>
            <div class="padding">
              <button class="button button-block" ng-click="submit()">Checkin</button>
            </div>
          </form>

          <div ng-hide="showForm">
            <pre ng-bind="attendee | json"></pre> 
            <a href="#/event/attendees">View attendees</a>
          </div>
        </ion-content>
      </ion-view>
    </script>

    <script id="templates/attendees.html" type="text/ng-template">
      <ion-view view-title="Event Attendees">
        <ion-content>
          <div class="list">
            <ion-toggle ng-repeat="attendee in attendees | orderBy:'firstname' | orderBy:'lastname'"
                        ng-model="attendee.arrived"
                        ng-change="arrivedChange(attendee)">
              {{ attendee.firstname }}
              {{ attendee.lastname }}
            </ion-toggle>
            <div class="item item-divider">
              Activity
            </div>
            <div class="item" ng-repeat="msg in activity">
              {{ msg }}
            </div>
          </div>
        </ion-content>
      </ion-view>
    </script>

  </body>
</html>

JS:

angular.module('ionicApp', ['ionic'])

.config(function($stateProvider, $urlRouterProvider) {

  $stateProvider
    .state('eventmenu', {
      url: "/event",
      abstract: true,
      templateUrl: "templates/event-menu.html"
    })
    .state('eventmenu.home', {
      url: "/home",
      views: {
        'menuContent' :{
          templateUrl: "templates/home.html"
        }
      }
    })
    .state('eventmenu.checkin', {
      url: "/check-in",
      views: {
        'menuContent' :{
          templateUrl: "templates/check-in.html",
          controller: "CheckinCtrl"
        }
      }
    })
    .state('eventmenu.attendees', {
      url: "/attendees",
      views: {
        'menuContent' :{
          templateUrl: "templates/attendees.html",
          controller: "AttendeesCtrl"
        }
      }
    })

  $urlRouterProvider.otherwise("/event/home");
})

.controller('MainCtrl', function($scope, $ionicSideMenuDelegate) {
  $scope.attendees = [
    { firstname: 'Nicolas', lastname: 'Cage' },
    { firstname: 'Jean-Claude', lastname: 'Van Damme' },
    { firstname: 'Keanu', lastname: 'Reeves' },
    { firstname: 'Steven', lastname: 'Seagal' }
  ];

  $scope.toggleLeft = function() {
    $ionicSideMenuDelegate.toggleLeft();
  };
})

.controller('CheckinCtrl', function($scope) {
  $scope.showForm = true;

  $scope.shirtSizes = [
    { text: 'Large', value: 'L' },
    { text: 'Medium', value: 'M' },
    { text: 'Small', value: 'S' }
  ];

  $scope.attendee = {};
  $scope.submit = function() {
    if(!$scope.attendee.firstname) {
      alert('Info required');
      return;
    }
    $scope.showForm = false;
    $scope.attendees.push($scope.attendee);
  };

})

.controller('AttendeesCtrl', function($scope) {

  $scope.activity = [];
  $scope.arrivedChange = function(attendee) {
    var msg = attendee.firstname + ' ' + attendee.lastname;
    msg += (!attendee.arrived ? ' has arrived, ' : ' just left, '); 
    msg += new Date().getMilliseconds();
    $scope.activity.push(msg);
    if($scope.activity.length > 3) {
      $scope.activity.splice(0, 1);
    }
  };

});

0
投票

1.如果您仍想使用离子含量,请尝试增加高度

<ion-content height="500"> //it may be possible to use height="100%"

2.使用<ion-scroll direction="y"> instead of <ion-content>

TAB CHILD VIEW - /仪表板/事件/列表/当前

<ion-view title="">
    <ion-scroll direction="y> <!-- use ion-scroll instead-->
        <ion-list show-delete="showDelete"
                  show-reorder="showReorder"
                  can-swipe="canSwipe">
            <div class="item item-divider">
                Current Events
            </div>
            <div ng-repeat="event in events">
                <ion-item>
                    <div>Date: {{event.dates[0] | date}}</div>
                    <br>
                    <h2>{{event.name}}</h2>
                    <p>Event Address: {{event.address}}</p>
                    <p>{{event.note}}</p>
                </ion-item>
            </div>
        </ion-list>
    </ion-scroll>
</ion-view>

0
投票

我遇到了类似的问题。而我只是这样做:

<ion-content scroll="true">.....</ion-content>

一切正常。希望能帮助到你。

© www.soinside.com 2019 - 2024. All rights reserved.