在警告对话框后,OnsenUI,Angular和刷新UI组件

时间:2016-05-13 12:21:44

标签: javascript angularjs onsen-ui monaca

我正在使用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 和双花括号表示法,但行为没有区别。

1 个答案:

答案 0 :(得分:1)

基本上,如果您想要更新视图,可以手动调用AutoResetEvent,一切都应该自行更新。可能有一些更聪明的&#34;解决方案,但由于您使用C++这看起来最简单。