1

我正在尝试使用 Angular js 编写指令,其中单击按钮必须增加一个count值。

在单击事件处理程序上,我尝试使用scope.$apply构造增加值,但它Syntax Error: Token 'undefined' not a primary expression at column NaN of the expression [count++] starting at [count++]在控制台中引发错误。

标记

<div ng-app="myApp">
    <div ng-controller="MainCtrl">
        <div my-directive >
        </div>
    </div>
</div>

JS

var myApp = angular.module('myApp', []);

myApp.directive('myDirective', function(){
    return {
        scope: {},
        template: '<div>{{count}}</div><input type="button" class="increment" value="Increment" />',
        link: function(scope, iElement, iAttrs, controller) {
            console.log('link', scope.count)
            iElement.on('click', '.increment', function(){
                console.log('click', scope.count);
                scope.$apply('count++');
            })
        },
        controller: function($scope){
            console.log('controller')
            $scope.count = 0;
        }
    };
});

myApp.controller('MainCtrl', ['$scope', function($scope){
}]);

演示:小提琴

4

2 回答 2

4

将您的表情更改为

count = count + 1

解决问题。演示:小提琴

由于 Angular 不eval用于计算表达式,因此您不能在其中使用全部 JavaScript;这是这些例外之一。如果您确实需要更强大的功能,可以将 JavaScript 函数传递给$apply(演示:Fiddle):

scope.$apply(function() {
  scope.count++;
});
于 2013-02-15T07:07:42.503 回答
3

为什么不直接使用ng-click

<body ng-controller='MainCtrl'>
  <button ng-click="increment()" value="Increment Me!">
  <h1>{{count}}</h1>
</body>

在你的 JS 中:

function MainCtrl($scope) {
  $scope.count = 0;
  $scope.increment = function() { $scope.count++; };
}  
于 2013-02-15T07:08:06.057 回答