Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/476.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 在ionic content on scroll事件上未更新Dom绑定_Javascript_Css_Angularjs_Ionic Framework_Ionic - Fatal编程技术网

Javascript 在ionic content on scroll事件上未更新Dom绑定

Javascript 在ionic content on scroll事件上未更新Dom绑定,javascript,css,angularjs,ionic-framework,ionic,Javascript,Css,Angularjs,Ionic Framework,Ionic,当用户向下滚动时,我想做一个进度条。当它一直向下时,该条为100%宽度 HTML 离子列表指令 <link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet"> <script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script> </head>

当用户向下滚动时,我想做一个进度条。当它一直向下时,该条为100%宽度

HTML 离子列表指令

    <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="MyCtrl">

    <ion-header-bar class="bar-positive">
      <div class="buttons">
        <button class="button button-icon icon ion-ios-minus-outline"
          ng-click="data.showDelete = !data.showDelete; data.showReorder = false"></button>
      </div>
      <h1 class="title">Ionic Delete/Option Buttons</h1>
      <div class="buttons">
        <button class="button" ng-click="data.showDelete = false; data.showReorder = !data.showReorder">
            Reorder
        </button>
      </div>
      <!--div class="progress" ng-style='{"width": pos.x}'></div-->
      <div class="progress" ng-style='getXObj()'></div>
    </ion-header-bar>

    <ion-content on-scroll="isScrolling()">

      <!-- The list directive is great, but be sure to also checkout the collection repeat directive when scrolling through large lists -->

      <ion-list show-delete="data.showDelete" show-reorder="data.showReorder">

        <ion-item ng-repeat="item in items" 
                  item="item"
                  href="#/item/{{item.id}}" class="item-remove-animate">
          Item {{ item.id }}
          <ion-delete-button class="ion-minus-circled" 
                             ng-click="onItemDelete(item)">
          </ion-delete-button>
          <ion-option-button class="button-assertive"
                             ng-click="edit(item)">
            Edit
          </ion-option-button>
          <ion-option-button class="button-calm"
                             ng-click="share(item)">
            Share
          </ion-option-button>
          <ion-reorder-button class="ion-navicon" on-reorder="moveItem(item, $fromIndex, $toIndex)"></ion-reorder-button>
        </ion-item>

      </ion-list>

    </ion-content>

  </body>
</html>
CSS

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

.controller('MyCtrl', function($scope, $ionicScrollDelegate) {

  $scope.data = {
    showDelete: false
  };

  $scope.edit = function(item) {
    alert('Edit Item: ' + item.id);
  };
  $scope.share = function(item) {
    alert('Share Item: ' + item.id);
  };

  $scope.moveItem = function(item, fromIndex, toIndex) {
    $scope.items.splice(fromIndex, 1);
    $scope.items.splice(toIndex, 0, item);
  };

  $scope.onItemDelete = function(item) {
    $scope.items.splice($scope.items.indexOf(item), 1);
  };

  $scope.items = [
    { id: 0 },
    { id: 1 },
    { id: 2 },
    { id: 3 },
    { id: 4 },
    { id: 5 },
    { id: 6 },
    { id: 7 },
    { id: 8 },
    { id: 9 },
    { id: 10 },
    { id: 11 },
    { id: 12 },
    { id: 13 },
    { id: 14 },
    { id: 15 },
    { id: 16 },
    { id: 17 },
    { id: 18 },
    { id: 19 },
    { id: 20 },
    { id: 21 },
    { id: 22 },
    { id: 23 },
    { id: 24 },
    { id: 25 },
    { id: 26 },
    { id: 27 },
    { id: 28 },
    { id: 29 },
    { id: 30 },
    { id: 31 },
    { id: 32 },
    { id: 33 },
    { id: 34 },
    { id: 35 },
    { id: 36 },
    { id: 37 },
    { id: 38 },
    { id: 39 },
    { id: 40 },
    { id: 41 },
    { id: 42 },
    { id: 43 },
    { id: 44 },
    { id: 45 },
    { id: 46 },
    { id: 47 },
    { id: 48 },
    { id: 49 },
    { id: 50 }
  ];

  $scope.pos = {x:'21.41982072480742%', xObj: {}};
  $scope.isScrolling = function() {
    console.log($ionicScrollDelegate.getScrollPosition());
    $scope.pos.x = ($ionicScrollDelegate.getScrollPosition().top / 2204 * 100) + '%';
    console.log($scope.pos.x);
    //$scope.getXObj();
  }

  $scope.getXObj = function() {
    console.log({"width": $scope.pos.x});
    return {"width": $scope.pos.x + "%"};
  }

});
body {
  cursor: url('http://ionicframework.com/img/finger.png'), auto;
}

.progress {
  height: 2px;
  background: red;
}
我试过两件事:

ng style='{“宽度”:pos.x}'

ng style='getXObj()'

但在我向下滚动时,没有绑定提供扩展的红色条

我看过这个问题:

尽管控制台显示了正确的百分比值,我还是不知道为什么


有没有线索说明为什么这不起作用?

似乎是一个可能的离子缺陷。它似乎在元素的滚动事件上调用函数OK,但不调用摘要循环来更新DOM

来自爱奥尼亚的片段:

var scrollFunc = function(e) {
    var detail = (e.originalEvent || e).detail || {};
    $scope.$onScroll && $scope.$onScroll({  //<-- Here it gets called but it is outside of angular context
      event: e,
      scrollTop: detail.scrollTop || 0,
      scrollLeft: detail.scrollLeft || 0
    });
  };

  $element.on('scroll', scrollFunc); //event registration

似乎爱奥尼亚没有在滚动计算处理程序之后调用摘要循环。。。如果我放置
$scope.$evalAsync()它只是工作得很好。。。尽管您可以使用scope.apply/scope.applyasync,但您的控制器并不是正确的位置,因为它应该位于调用堆栈的顶部,即在ionic代码上执行事件处理程序之后。
$scope.isScrolling = function() {
    $scope.pos.x = ($ionicScrollDelegate.getScrollPosition().top / 2204 * 100) + '%';
    $scope.$evalAsync(angular.noop);
  }