我有以下 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() 似乎永远不会被调用。