Angular ng-change for select不调用声明的方法

时间:2013-06-08 23:59:53

标签: javascript html select angularjs

我有以下html表单选择语句

<select ng-change="setBillGroup()" ng-model="bill.groupId" class="span8" ng-options="d.id as d.name for d in groups"></select>

和js

myApp.controller('myAppController', function($scope, myAppService) {

.....
function setBillGroup(){
 console.log("setBillGroup method called!");
    ......
 }

....
});

但由于某些原因,当我在表单中选择某个或另一个时,似乎永远不会调用setBillGroup()。

1 个答案:

答案 0 :(得分:27)

您必须在范围内定义方法。

$scope.setBillGroup = function(){
 console.log("setBillGroup method called!");
    ......
 };