我有以下html形式的select语句

<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()。

最佳答案

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

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

10-07 18:14