次の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() が呼び出されないようです。