How can you pass a bound variable to an ng-click function?

前端 未结 2 691
说谎
说谎 2020-12-13 08:29

I have a simple delete button that will accept a string or number but won\'t accept an ng-model variable ( not sure if that\'s the correct terminology ).

<         


        
2条回答
  •  北荒
    北荒 (楼主)
    2020-12-13 08:34

    The ngClick directive binds an expression. It executes Angular code directly (as ngIf, ngChange, etc.) without the need of {{ }}.

    angular.module('app', []).controller('MyCtrl', function($scope) { 
        $scope.submission = { id: 100 };
    
        $scope.delete = function(id) {
            alert(id + " deleted!");
        }
    });
    
    
    

提交回复
热议问题