按下按钮时角度+流星计数器增量

时间:2015-11-26 11:31:21

标签: javascript angularjs meteor counter increment

我正在为我的项目使用流星,角度和离子。我想在按下模态中的某个按钮时增加计数器。然后我想显示这个计数器的值。 我的代码如下,但它似乎根本不起作用:

HTML

<button class="button button-clear button-positive" ng-click="timee(1)">
              Delay
</button>

控制器

angular
  .module('Buschat')
  .controller('NewGoodCtrl', NewGoodCtrl);

function NewGoodCtrl($scope, $state, $meteor) {

  $scope.timecnt=0;

  $scope.hideModal = hideModal;
  $scope.timee = timee;

  function hideModal() {
    $scope.modal.hide();
  }

  function timee(inc){
    $scope.timecnt += inc;
    $scope.modal.hide();
  }

请注意,当删除行$scope.timecnt += inc;时,隐藏模态功能可以正常工作

1 个答案:

答案 0 :(得分:1)

尝试将您的函数放在$ scope变量中,然后从html文件中调用它