OnsenUI、Angular和在警报对话框后刷新UI组件



我正在使用Monaca、OnsenUI和Angular开发一款移动应用程序。在一个页面中,我有一个可点击项目的列表;当用户点击一个条目时,应该出现一个对话框来输入一个值。该值应显示在点击的列表项中。它确实起作用,但直到我再次点击列表项,即使只是取消对话框,值也不会刷新。我希望在用户关闭对话框后立即更新显示的值。

下面是一个HTML片段:

<ons-page>
  <ons-row style="margin-top: 10px; text-align: center;">
    <ons-col ng-controller="NewSubmissionController">
      <ons-list id="materialList" style="margin-top: 12px;">
        <ons-list-header>Pick the Materials</ons-list-header>
        <ons-list-item modifier="tappable" ng-click="doPickMaterial('ferrous')">
          Ferrous (<span ng-bind="materialCounters['ferrous']"></span>)
        </ons-list-item>
        <ons-list-item modifier="tappable" ng-click="doPickMaterial('non-ferrous')">
          Metal, non-ferrous ({{materialCounters['non-ferrous']}})
        </ons-list-item>
        <ons-list-item modifier="tappable" ng-click="doPickMaterial('plastic')">
          Plastic ({{materialCounters['plastic']}})
        </ons-list-item>
        <ons-list-item modifier="tappable" ng-click="doPickMaterial('other')">
          Other ({{materialCounters['other']}})
        </ons-list-item>
      </ons-list>
    </ons-col>
  </ons-row>
</ons-page>

这是控制器:

app.controller('NewSubmissionController', function($scope) {
  $scope.materialCounters = {
    'ferrous': 0,
    'non-ferrous': 0,
    'plastic': 0,
    'other': 0
  };
  $scope.doPickMaterial = function(matType) {
    ons.notification.prompt({
      title: 'Material: ' + matType,
      message: 'Please enter number of items',
      cancelable: true,
      animation: 'slide',
      callback: function(newCt) {
        alert('Input value: *' + newCt + '*');
        if (newCt != null) {
          if (newCt == '') { //  An empty input will be taken as zero
            newCt = 0;
          }
          $scope.materialCounters[matType] = n;
          alert('Count for ' + matType + ': ' + $scope.materialCounters[matType]);
        }
      }
    });
  };
});

我尝试使用ng-bind和双花括号表示法,但行为没有差异。

基本上,如果你想更新视图,你可以手动调用$scope.apply(),一切都应该更新。可能有一些"更智能"的解决方案,但由于您使用的是ons.notification.prompt,这看起来是最简单的解决方案。

相关内容

  • 没有找到相关文章

最新更新